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

GetOperationAsync() 공개 메소드

public GetOperationAsync ( string id ) : Task
id string
리턴 Task
        public async Task<MobileServiceTableOperation> GetOperationAsync(string id)
        {
            JObject op = await this.store.LookupAsync(MobileServiceLocalSystemTables.OperationQueue, id);
            if (op == null)
            {
                return null;
            }
            return MobileServiceTableOperation.Deserialize(op);
        }