5 references to SqlBinary
System.Data.Common (5)
System\Data\Common\SQLConvert.cs (1)
569
return new
SqlBinary
(Convert.FromBase64String((string)value));
System\Data\SQLTypes\SQLBinary.cs (3)
106
public static implicit operator SqlBinary(byte[] x) => new
SqlBinary
(x);
138
return new
SqlBinary
(rgbResult);
198
return x.IsNull ? SqlBinary.Null : new
SqlBinary
(x.ToByteArray());
System\Data\SQLTypes\SQLBytes.cs (1)
434
return IsNull ? SqlBinary.Null : new
SqlBinary
(Value);