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

AssertSetIdAndValue() private static method

private static AssertSetIdAndValue ( string setId, byte value ) : void
setId string
value byte
return void
        private static void AssertSetIdAndValue(string setId, byte[] value)
        {
            if (setId == null)
                throw new ArgumentNullException("setId");
            if (value == null)
                throw new ArgumentNullException("value");
        }
RedisNativeClient