1 instantiation of AsyncOperation
System.ComponentModel.EventBasedAsync (1)
System\ComponentModel\AsyncOperation.cs (1)
104AsyncOperation newOp = new AsyncOperation(userSuppliedState, syncContext);
41 references to AsyncOperation
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (4)
412AsyncOperation asyncOperation = AsyncOperationManager.CreateOperation(userState); 483private AsyncOperation _asyncOperation; 487internal AsyncOperationContext(AsyncOperation asyncOperation, EndOperationDelegate endDelegate, SendOrPostCallback completionCallback) 494internal AsyncOperation AsyncOperation
netstandard (1)
netstandard.cs (1)
179[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.AsyncOperation))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
165[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.AsyncOperation))]
System.ComponentModel.EventBasedAsync (5)
System\ComponentModel\AsyncOperation.cs (2)
102internal static AsyncOperation CreateOperation(object? userSuppliedState, SynchronizationContext syncContext) 104AsyncOperation newOp = new AsyncOperation(userSuppliedState, syncContext);
System\ComponentModel\AsyncOperationManager.cs (2)
12public static AsyncOperation CreateOperation(object? userSuppliedState) 14return AsyncOperation.CreateOperation(userSuppliedState, SynchronizationContext);
System\ComponentModel\BackgroundWorker.cs (1)
18private AsyncOperation? _asyncOperation;
System.Net.Mail (2)
System\Net\Mail\SmtpClient.cs (2)
55private AsyncOperation? _asyncOp; 884AsyncOperation asyncOp = client._asyncOp!;
System.Net.Ping (2)
System\Net\NetworkInformation\Ping.cs (2)
526var asyncOp = (AsyncOperation)state!;
System.Net.WebClient (24)
System\Net\WebClient.cs (24)
42private AsyncOperation? _asyncOp; 107private AsyncOperation StartAsyncOperation(object? userToken) 132AsyncOperation asyncOp = AsyncOperationManager.CreateOperation(userToken); 869AsyncOperation asyncOp, Action<byte[]?, Exception?, AsyncOperation> completionDelegate) 1007AsyncOperation asyncOp, Action<byte[]?, Exception?, AsyncOperation> completionDelegate) 1181private void InvokeOperationCompleted(AsyncOperation asyncOp, SendOrPostCallback callback, AsyncCompletedEventArgs eventArgs) 1197AsyncOperation asyncOp = StartAsyncOperation(userToken); 1237AsyncOperation asyncOp = StartAsyncOperation(userToken); 1268AsyncOperation asyncOp = (AsyncOperation)state; 1294AsyncOperation asyncOp = StartAsyncOperation(userToken); 1308AsyncOperation asyncOp = (AsyncOperation)state; 1320AsyncOperation asyncOp = StartAsyncOperation(userToken); 1334AsyncOperation asyncOp = (AsyncOperation)state; 1348AsyncOperation asyncOp = StartAsyncOperation(userToken); 1375AsyncOperation asyncOp = StartAsyncOperation(userToken); 1424AsyncOperation asyncOp = StartAsyncOperation(userToken); 1464AsyncOperation asyncOp = StartAsyncOperation(userToken); 1500AsyncOperation asyncOp = StartAsyncOperation(userToken); 1805private void PostProgressChanged(AsyncOperation asyncOp, ProgressData progress)
System.Windows.Forms (2)
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (2)
51private AsyncOperation? _currentAsyncLoadOperation; 606AsyncOperation? temp = _currentAsyncLoadOperation;