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

UpdateAsync() public method

public UpdateAsync ( Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperation op ) : Task
op Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperation
return Task
        public virtual async Task UpdateAsync(MobileServiceTableOperation op)
        {
            try
            {
                await this.store.UpsertAsync(MobileServiceLocalSystemTables.OperationQueue, op.Serialize(), fromServer: false);
            }
            catch (Exception ex)
            {
                throw new MobileServiceLocalStoreException("Failed to update operation in the local store.", ex);
            }
        }

Same methods

OperationQueue::UpdateAsync ( string id, long version, Newtonsoft.Json.Linq.JObject item ) : Task