Microsoft.WindowsAzure.MobileServices.Sync.OperationQueue.LockItemAsync C# (CSharp) Method

LockItemAsync() public method

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