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

EnqueueAsync() public method

public EnqueueAsync ( Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperation op ) : Task
op Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperation
return Task
        public async Task EnqueueAsync(MobileServiceTableOperation op)
        {
            op.Sequence = Interlocked.Increment(ref this.sequenceId);
            await this.store.UpsertAsync(MobileServiceLocalSystemTables.OperationQueue, op.Serialize(), fromServer: false);
            Interlocked.Increment(ref this.pendingOperations);
        }