Z.Expressions.SqlServer.Eval.SQLNET.valuebinary C# (CSharp) Method

valuebinary() public method

Add or update a binary value associated with the specified key.
public valuebinary ( SqlString key, SqlBinary value ) : SQLNET
key System.Data.SqlTypes.SqlString The key of the value to add or update.
value System.Data.SqlTypes.SqlBinary The binary value to add or update associated with the specified key.
return SQLNET
        public SQLNET valuebinary(SqlString key, SqlBinary value)
        {
            return ValueBinary(key.Value, value);
        }
SQLNET