35 references to Value
System.Data (35)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3392
setters.SetBoolean( sink, ordinal, value.
Value
);
fx\src\data\System\Data\Common\SQLConvert.cs (1)
715
return XmlConvert.ToString(((SqlBoolean)value).
Value
);
fx\src\data\System\Data\Sql\SqlMetaData.cs (2)
1458
if (SqlDbType.SmallMoney == SqlDbType && ((x_smSmallMax < value).
Value
|| (x_smSmallMin > value).
Value
))
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (4)
641
schemaRow[IsAliased] = colMetaData.IsAliased.
Value
;
645
schemaRow[IsKey] = colMetaData.IsKey.
Value
;
649
schemaRow[IsHidden] = colMetaData.IsHidden.
Value
;
653
schemaRow[IsExpression] = colMetaData.IsExpression.
Value
;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
441
comVal = ((SqlBoolean)sqlVal).
Value
;
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1140
if (null != qmd && !qmd.IsKey.IsNull && qmd.IsKey.
Value
) {
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9996
if (((SqlBoolean)value).
Value
== true)
10960
return SerializeLong(((SqlBoolean)value).
Value
== true ? 1 : 0, stateObj);
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (1)
416
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (10)
81
/// Gets whether the current <see cref='System.Data.SqlTypes.SqlBoolean.
Value
'/> is <see cref='System.Data.SqlTypes.SqlBoolean.Null'/>.
113
/// Gets whether the current <see cref='System.Data.SqlTypes.SqlBoolean.
Value
'/> is <see cref='System.Data.SqlTypes.SqlBoolean.True'/>.
123
/// Gets whether the current <see cref='System.Data.SqlTypes.SqlBoolean.
Value
'/> is <see cref='System.Data.SqlTypes.SqlBoolean.False'/>.
149
return x.
Value
;
243
return IsNull ? SQLResource.NullString :
Value
.ToString((IFormatProvider)null);
549
return (this == i).
Value
;
557
return IsNull ? 0 :
Value
.GetHashCode();
602
/// <see cref='System.Data.SqlTypes.SqlBoolean.
Value
'/> property of an instance of
610
/// <see cref='System.Data.SqlTypes.SqlBoolean.
Value
'/> property of an instance of
617
/// Represents a null value that can be assigned to the <see cref='System.Data.SqlTypes.SqlBoolean.
Value
'/> property of an instance of
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
549
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (1)
609
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
3207
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
469
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (1)
345
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
558
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
570
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
624
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
609
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
473
return (this == i).
Value
;
fx\src\data\System\Data\SQLTypes\SQLString.cs (2)
511
return x.IsNull ? Null : new SqlString((x.
Value
).ToString());
960
return (this == i).
Value
;