HttpPostClientProtocol.GetWebRequest(Uri) Method      
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a WebRequest instance for the specified URI.
protected:
 override System::Net::WebRequest ^ GetWebRequest(Uri ^ uri);protected override System.Net.WebRequest GetWebRequest(Uri uri);override this.GetWebRequest : Uri -> System.Net.WebRequestProtected Overrides Function GetWebRequest (uri As Uri) As WebRequestParameters
- uri
- Uri
The Uri to use when creating the WebRequest.
Returns
The WebRequest instance.
Exceptions
The uri parameter is null or has a length of zero.
Remarks
This method overrides the base version of GetWebRequest to specify that the HTTP request to the XML Web service is made using HTTP-POST. By overriding this method, you can customize the WebRequest object before the XML Web service request is made. For example, you can add a custom header to the request.