System.ComponentModel.AsyncOperation.AsyncOperation C# (CSharp) 메소드

AsyncOperation() 개인적인 메소드

Constructor. Protected to avoid unwitting usage - AsyncOperation objects are typically created by AsyncOperationManager calling CreateOperation.
private AsyncOperation ( object userSuppliedState, SynchronizationContext syncContext ) : System.Security.Permissions
userSuppliedState object
syncContext System.Threading.SynchronizationContext
리턴 System.Security.Permissions
        private AsyncOperation(object userSuppliedState, SynchronizationContext syncContext)
        {
            this.userSuppliedState = userSuppliedState;
            this.syncContext = syncContext;
            this.alreadyCompleted = false;
            this.syncContext.OperationStarted();
        }