Microsoft.WindowsAzure.MobileServices.Sync.OperationQueue.CountPending C# (CSharp) Méthode

CountPending() public méthode

public CountPending ( string tableName ) : Task
tableName string
Résultat Task
        public virtual async Task<long> CountPending(string tableName)
        {
            MobileServiceTableQueryDescription query = CreateQuery();
            query.Filter = new BinaryOperatorNode(BinaryOperatorKind.Equal, new MemberAccessNode(null, "tableName"), new ConstantNode(tableName));
            return await this.store.CountAsync(query);
        }