Microsoft.WindowsAzure.MobileServices.Sync.OperationQueue.LockItemAsync C# (CSharp) 메소드

LockItemAsync() 공개 메소드

public LockItemAsync ( string id, CancellationToken cancellationToken ) : Task
id string
cancellationToken System.Threading.CancellationToken
리턴 Task
        public Task<IDisposable> LockItemAsync(string id, CancellationToken cancellationToken)
        {
            return this.itemLocks.Acquire(id, cancellationToken);
        }