Interface IHttpWebResponse
The IHttpWebResponse interface
Namespace: ImageVault.Client.Net
Assembly: ImageVault.Client.dll
Syntax
public interface IHttpWebResponse
Properties
ContentType
Gets the ContentType of the IHttpWebResponse
Declaration
string ContentType { get; }
Property Value
Type | Description |
---|---|
System.String |
Headers
Gets the headers of the web response
Declaration
WebHeaderCollection Headers { get; }
Property Value
Type | Description |
---|---|
System.Net.WebHeaderCollection |
StatusCode
Gets the StatusCode of the IHttpWebResponse
Declaration
HttpStatusCode StatusCode { get; }
Property Value
Type | Description |
---|---|
System.Net.HttpStatusCode |
StatusDescription
Gets the StatusDescription of the IHttpWebResponse
Declaration
string StatusDescription { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Close()
Declaration
void Close()
GetResponseStream()
Declaration
Stream GetResponseStream()
Returns
Type | Description |
---|---|
System.IO.Stream |