Mono Class Library: Overview

System.Net.WebRequest: Method Members

The methods of System.Net.WebRequest are listed below. For a list of all members, see the WebRequest Members list.

See Also: Inherited members from System.MarshalByRefObject

Public Methods

Abort()
Attempts to cancel an asynchronous request made by the current instance to access a resource.
BeginGetRequestStream(AsyncCallback, object) : IAsyncResult
Begins an asynchronous request for a stream in which to write data to be sent in the current request.
BeginGetResponse(AsyncCallback, object) : IAsyncResult
Begins sending the current request asynchronously.
static
Create(string) : WebRequest
Constructs a new instance of a class derived from System.Net.WebRequest. The new instance is of the type registered for the scheme of the specified URI.
static
Create(Uri) : WebRequest
Constructs a new instance of a class derived from System.Net.WebRequest.
static
CreateDefault(Uri) : WebRequest
Constructs a new instance of a class derived from System.Net.WebRequest. The new instance is of the type registered for the scheme of the specified URI.
EndGetRequestStream(IAsyncResult) : System.IO.Stream
Returns a System.IO.Stream for writing data to the resource identified by the WebRequest.RequestUri property of the current instance.
EndGetResponse(IAsyncResult) : WebResponse
Returns a System.Net.WebResponse that contains a response to a specified pending request.
GetRequestStream() : System.IO.Stream
Returns a System.IO.Stream for writing data to a resource.
GetResponse() : WebResponse
Returns a response to a request.
static
GetSystemWebProxy() : IWebProxy
Documentation for this section has not yet been entered.
static
RegisterPrefix(string, IWebRequestCreate) : bool
Registers a type derived from System.Net.WebRequest, and associates the type with the specified URI.

Protected Methods