ServiceStack.Redis.RedisNativeClient.HLen C# (CSharp) Méthode

HLen() public méthode

public HLen ( string hashId ) : long
hashId string
Résultat long
        public long HLen(string hashId)
        {
            if (string.IsNullOrEmpty(hashId))
                throw new ArgumentNullException("hashId");

            return SendExpectLong(Commands.HLen, hashId.ToUtf8Bytes());
        }
RedisNativeClient