In The Hand LtdIn The Hand
GetWebResponse Method (request)
NamespacesInTheHand.NetWebClientGetWebResponse(WebRequest)
.NET Components for Mobility
Returns the WebResponse for the specified WebRequest.
Declaration Syntax
C#Visual Basic
protected virtual WebResponse GetWebResponse(
	WebRequest request
)
Protected Overridable Function GetWebResponse ( _
	request As WebRequest _
) As WebResponse
Parameters
request (WebRequest)
A WebRequest that is used to obtain the response.
Return Value
A WebResponse for the specified WebRequest.
Remarks
The object returned by this method is obtained by calling the GetResponse()()()() method on the specified WebRequest object. This method can be called only by classes that inherit from WebClient. It is provided to give inheritors access to the underlying WebResponse object.
Examples
The following code example shows an implementation of this method that can be customized by a class derived from WebClient.
CopyC#
protected override WebResponse GetWebResponse (WebRequest request)
{
    WebResponse response = base.GetWebResponse (request);
    // Perform any custom actions with the response ...
    return response;
}

Assembly: InTheHand.Net (Module: InTheHand.Net) Version: 7.0.0.0