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