ServiceStack.Redis.RedisNativeClient.HExists C# (CSharp) 메소드

HExists() 공개 메소드

public HExists ( string hashId, byte key ) : long
hashId string
key byte
리턴 long
        public long HExists(string hashId, byte[] key)
        {
            AssertHashIdAndKey(hashId, key);

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