ServiceStack.Redis.RedisNativeClient.StrLen C# (CSharp) Метод

StrLen() публичный Метод

public StrLen ( string key ) : long
key string
Результат long
        public long StrLen(string key)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.StrLen, key.ToUtf8Bytes());
        }
RedisNativeClient