WebClientProtocol.GetWebResponse Method

Definition

Returns a response from a request to an XML Web service method. This protected method is called by the XML Web service client infrastructure to get the response from a synchronous XML Web service request.

Overloads

GetWebResponse(WebRequest)

Returns a response from a synchronous request to an XML Web service method.

GetWebResponse(WebRequest, IAsyncResult)

Returns a response from an asynchronous request to an XML Web service method. This protected method is called by the XML Web service client infrastructure to get the response from an asynchronous XML Web service request.

GetWebResponse(WebRequest)

Returns a response from a synchronous request to an XML Web service method.

C#
protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request);

Parameters

request
WebRequest

The WebRequest to get the response from.

Returns

A response from a synchronous request to an XML Web service method.

Exceptions

If Abort() is invoked prior to calling GetWebResponse(WebRequest).

See also

Applies to

.NET Framework 4.8.1 i inne wersje
Produkt Wersje
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

GetWebResponse(WebRequest, IAsyncResult)

Returns a response from an asynchronous request to an XML Web service method. This protected method is called by the XML Web service client infrastructure to get the response from an asynchronous XML Web service request.

C#
protected virtual System.Net.WebResponse GetWebResponse(System.Net.WebRequest request, IAsyncResult result);

Parameters

request
WebRequest

The WebRequest to get the response from.

result
IAsyncResult

The IAsyncResult to pass to EndGetResponse(IAsyncResult) when the response has completed.

Returns

A response from an asynchronous request to an XML Web service method.

Exceptions

If Abort() is invoked prior to calling GetWebResponse(WebRequest).

See also

Applies to

.NET Framework 4.8.1 i inne wersje
Produkt Wersje
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1