22 references to Value
System.Data.Common (22)
System\Data\Common\SQLConvert.cs (1)
657return 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'/>. 113public static explicit operator byte[]?(SqlBinary x) => x.Value; 134byte[] rgbResult = new byte[x.Value.Length + y.Value.Length]; 135x.Value.CopyTo(rgbResult, 0); 136y.Value.CopyTo(rgbResult, x.Value.Length); 212return new SqlBoolean(PerformCompareByte(x.Value, y.Value) == EComparison.EQ); 233return new SqlBoolean(PerformCompareByte(x.Value, y.Value) == EComparison.LT); 244return new SqlBoolean(PerformCompareByte(x.Value, y.Value) == EComparison.GT); 255EComparison cmpResult = PerformCompareByte(x.Value, y.Value); 267EComparison 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)
85public SqlBytes(SqlBinary value) : this(value.IsNull ? null : value.Value!)
System\Data\SQLTypes\SQLGuid.cs (1)
156return x.IsNull ? Null : new SqlGuid(x.Value);