CreateOperation() static private method

Only for use by AsyncOperationManager to create new AsyncOperation objects
static private CreateOperation ( object userSuppliedState, SynchronizationContext syncContext ) : AsyncOperation
userSuppliedState object
syncContext System.Threading.SynchronizationContext
return AsyncOperation
コード例 #1
0
 public static AsyncOperation CreateOperation(object userSuppliedState)
 {
     return(AsyncOperation.CreateOperation(userSuppliedState, SynchronizationContext));
 }