Click or drag to resize
HttpWebRequest Class
Provides an HTTP-specific implementation of the WebRequest class.
Inheritance Hierarchy

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 HttpWebRequest : WebRequest

The HttpWebRequest type exposes the following members.

Constructors
  NameDescription
Public methodHttpWebRequest
Initializes a new instance of the HttpWebRequest class
Top
Properties
  NameDescription
Public propertyAllowWriteStreamBuffering
No effect in this platform. It's only implemented for compatibility with .NETMF.
Public propertyContentLength
No effect in this platform. It's only implemented for compatibility with .NETMF.
Public propertyContentType
Gets or sets the type of the entity body (the value of the content type).
Public propertyData
Data to be sent in the request. Only valid for POST requests.
Public propertyHeaders
A collection of HTTP headers stored as name/value pairs.
Public propertyKeepAlive
No effect in this platform. It's only implemented for compatibility with .NETMF.
Public propertyMethod
Gets or sets the HTTP method of this request. Supported methods: POST, GET, HEAD and DELETE.
Public propertyRequestUri
Gets the original Uniform Resource Identifier (URI) of the request.
Public propertyUserAgent
Gets or sets the value of the User-Agent HTTP header.
(Inherited from WebRequest.)
Top
Methods
  NameDescription
Public methodDispose (Inherited from WebRequest.)
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetRequestStream
Implemented here for compatibility with .NETMF System.Net.HttpWebRequest. *** WARNING: DO NOT explicitly dispose the stream otherwise the request will be executed empty ***
Public methodGetResponse
Public methodGetType (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Remarks
This class does the main work of the request: it collects the header information from the user, exposes the Stream for outgoing entity data, and processes the incoming request. Implementation follows .NETMF System.Net.HttpWebRequest
See Also