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

AssertHashIdAndKey() private static method

private static AssertHashIdAndKey ( object hashId, byte key ) : void
hashId object
key byte
return void
        private static void AssertHashIdAndKey(object hashId, byte[] key)
        {
            if (hashId == null)
                throw new ArgumentNullException("hashId");
            if (key == null)
                throw new ArgumentNullException("key");
        }
RedisNativeClient