1 instantiation of AsyncOperation
System.ComponentModel.EventBasedAsync (1)
System\ComponentModel\AsyncOperation.cs (1)
104AsyncOperation newOp = new AsyncOperation(userSuppliedState, syncContext);
19 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)
parent\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.Ping (2)
System\Net\NetworkInformation\Ping.cs (2)
526var asyncOp = (AsyncOperation)state!;
System.ServiceModel.Primitives (3)
System\ServiceModel\ClientBase.cs (3)
823AsyncOperation asyncOperation = AsyncOperationManager.CreateOperation(userState); 896internal AsyncOperationContext(AsyncOperation asyncOperation, EndOperationDelegate endDelegate, SendOrPostCallback completionCallback) 903internal AsyncOperation AsyncOperation { get; }
System.Windows.Extensions (1)
System\Media\SoundPlayer.cs (1)
41private AsyncOperation? _asyncOperation;
System.Windows.Forms (2)
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (2)
51private AsyncOperation? _currentAsyncLoadOperation; 604AsyncOperation? temp = _currentAsyncLoadOperation;