ServiceStack.Redis.RedisNativeClient.HLen C# (CSharp) Method

HLen() public method

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

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