6 references to SqlBytes
System.Data (6)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
359
result = new
SqlBytes
( byteBuffer );
378
result = new
SqlBytes
( binaryVal.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
630
return new
SqlBytes
(Convert.FromBase64String((string)value));
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
995
value = new
SqlBytes
(rgbNew);
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (2)
128
public SqlBytes(SqlBinary value) :
this
(value.IsNull ? (byte[])null : value.Value) {
605
return new
SqlBytes
((byte[])null);