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