22 references to Value
System.Data.Common (22)
System\Data\Common\SQLConvert.cs (1)
657
return Convert.ToBase64String(((SqlBinary)value).
Value
);
System\Data\SQLTypes\SQLBinary.cs (19)
49
/// Gets whether or not <see cref='
Value
'/> is null.
87
/// Gets the length in bytes of <see cref='
Value
'/>.
113
public static explicit operator byte[]?(SqlBinary x) => x.
Value
;
134
byte[] rgbResult = new byte[x.
Value
.Length + y.
Value
.Length];
135
x.
Value
.CopyTo(rgbResult, 0);
136
y.
Value
.CopyTo(rgbResult, x.
Value
.Length);
212
return new SqlBoolean(PerformCompareByte(x.
Value
, y.
Value
) == EComparison.EQ);
233
return new SqlBoolean(PerformCompareByte(x.
Value
, y.
Value
) == EComparison.LT);
244
return new SqlBoolean(PerformCompareByte(x.
Value
, y.
Value
) == EComparison.GT);
255
EComparison cmpResult = PerformCompareByte(x.
Value
, y.
Value
);
267
EComparison cmpResult = PerformCompareByte(x.
Value
, y.
Value
);
469
/// Represents a null value that can be assigned to the <see cref='
Value
'/> property of an
System\Data\SQLTypes\SQLBytes.cs (1)
85
public SqlBytes(SqlBinary value) : this(value.IsNull ? null : value.
Value
!)
System\Data\SQLTypes\SQLGuid.cs (1)
156
return x.IsNull ? Null : new SqlGuid(x.
Value
);