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);
}