4 instantiations of WebClientAsyncResult
System.Web.Services (4)
System\Web\Services\Protocols\HttpClientProtocol.cs (2)
194
WebClientAsyncResult asyncResult = new
WebClientAsyncResult
(this, invokeState, null, callback, asyncState);
283
WebClientAsyncResult asyncResult = new
WebClientAsyncResult
(this, null, null, new AsyncCallback(InvokeAsyncCallback), asyncOp);
System\Web\Services\Protocols\SoapClientProtocol.cs (2)
335
WebClientAsyncResult asyncResult = new
WebClientAsyncResult
(this, invokeState, null, callback, asyncState);
439
WebClientAsyncResult asyncResult = new
WebClientAsyncResult
(this, invokeState, null, new AsyncCallback(InvokeAsyncCallback), asyncOp);
25 references to WebClientAsyncResult
System.Web.Services (25)
System\Web\Services\Protocols\ClientProtocol.cs (17)
231
internal IAsyncResult BeginSend(Uri requestUri,
WebClientAsyncResult
asyncResult, bool callWriteAsyncRequest) {
255
static private void ProcessAsyncException(
WebClientAsyncResult
client, Exception e, string method) {
273
WebClientAsyncResult
client = (
WebClientAsyncResult
)asyncResult.AsyncState;
308
WebClientAsyncResult
client = (
WebClientAsyncResult
)asyncResult.AsyncState;
325
static private void ReadAsyncResponse(
WebClientAsyncResult
client) {
342
static private void ReadAsyncResponseStream(
WebClientAsyncResult
client) {
358
static private bool ProcessAsyncResponseStreamResult(
WebClientAsyncResult
client, IAsyncResult asyncResult) {
384
WebClientAsyncResult
client = (
WebClientAsyncResult
)asyncResult.AsyncState;
501
WebClientAsyncResult
client = (
WebClientAsyncResult
)asyncResult;
891
WebClientAsyncResult
result = OperationCompleted(userState, new object[] { null }, null, true);
897
internal
WebClientAsyncResult
OperationCompleted(object userState, object[] parameters, Exception e, bool canceled) {
899
WebClientAsyncResult
result = (
WebClientAsyncResult
)AsyncInvokes[userState];
System\Web\Services\Protocols\HttpClientProtocol.cs (4)
194
WebClientAsyncResult
asyncResult = new WebClientAsyncResult(this, invokeState, null, callback, asyncState);
247
WebClientAsyncResult
asyncResult = (
WebClientAsyncResult
)result;
283
WebClientAsyncResult
asyncResult = new WebClientAsyncResult(this, null, null, new AsyncCallback(InvokeAsyncCallback), asyncOp);
System\Web\Services\Protocols\SoapClientProtocol.cs (4)
335
WebClientAsyncResult
asyncResult = new WebClientAsyncResult(this, invokeState, null, callback, asyncState);
393
WebClientAsyncResult
asyncResult = (
WebClientAsyncResult
)result;
439
WebClientAsyncResult
asyncResult = new WebClientAsyncResult(this, invokeState, null, new AsyncCallback(InvokeAsyncCallback), asyncOp);