6 references to SqlBytes
System.Data (6)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (2)
359result = new SqlBytes( byteBuffer ); 378result = new SqlBytes( binaryVal.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
630return new SqlBytes(Convert.FromBase64String((string)value));
fx\src\data\System\Data\Sql\SqlMetaData.cs (1)
995value = 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);