Click or drag to resize
HttpWebResponse Class
Handles retrieval of HTTP Response headers, and handles data reads.
Inheritance Hierarchy
SystemObject
  Eclo.NETMF.SIM800HHttpWebResponse

Namespace: Eclo.NETMF.SIM800H
Assembly: Eclo.NETMF.SIM800H (in Eclo.NETMF.SIM800H.dll) Version: 1.1.97.0 (1.1.97.0)
Syntax
C#
public class HttpWebResponse : IDisposable

The HttpWebResponse type exposes the following members.

Properties
  NameDescription
Public propertyBodyData
Body data, if any, received from the request execution. It's null or empty if the request was performed with the option of not reading the response data.
Public propertyHeaders
Headers collection received from the request response. It's empty if the request was performed with the option of not reading the response headers.
Public propertyRequestSuccessful
True if the request was successfully executed.
Public propertyStatusCode
HttpStatusCode of the request response
Top
Methods
  NameDescription
Public methodClose
Public methodDispose
Releases all resources used by the HttpWebResponse
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetResponseStream
Public methodGetType (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Remarks
Implementation follows .NETMF System.Net.HttpWebResponse
See Also