Interface IApiResponse
Provides a non-generic contract for the ApiResponse wrapper.
Namespace: Telerik.CallHome.OpenAPI.Client
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IApiResponse
Properties
Content
The content of this response
Declaration
object Content { get; }
Property Value
System.Object
|
Cookies
Gets or sets any cookies passed along on the response.
Declaration
List<Cookie> Cookies { get; set; }
Property Value
System.Collections.Generic.List<System.Net.Cookie>
|
ErrorText
Gets or sets any error text defined by the calling client.
Declaration
string ErrorText { get; set; }
Property Value
System.String
|
Headers
Gets or sets the HTTP headers
Declaration
Multimap<string, string> Headers { get; }
Property Value
Multimap<System.String, System.String>
HTTP headers |
RawContent
The raw content of this response
Declaration
string RawContent { get; }
Property Value
System.String
|
ResponseType
StatusCode
Gets or sets the status code (HTTP status code)
Declaration
HttpStatusCode StatusCode { get; }
Property Value
System.Net.HttpStatusCode
The status code. |