35 references to Value
System.Data (35)
fx\src\data\Microsoft\SqlServer\Server\ValueUtilsSmi.cs (1)
3392setters.SetBoolean( sink, ordinal, value.Value );
fx\src\data\System\Data\Common\SQLConvert.cs (1)
715return XmlConvert.ToString(((SqlBoolean)value).Value);
fx\src\data\System\Data\Sql\SqlMetaData.cs (2)
1458if (SqlDbType.SmallMoney == SqlDbType && ((x_smSmallMax < value).Value || (x_smSmallMin > value).Value))
fx\src\data\System\Data\SqlClient\SqlDataReaderSmi.cs (4)
641schemaRow[IsAliased] = colMetaData.IsAliased.Value; 645schemaRow[IsKey] = colMetaData.IsKey.Value; 649schemaRow[IsHidden] = colMetaData.IsHidden.Value; 653schemaRow[IsExpression] = colMetaData.IsExpression.Value;
fx\src\data\System\Data\SqlClient\SqlEnums.cs (1)
441comVal = ((SqlBoolean)sqlVal).Value;
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
1140if (null != qmd && !qmd.IsKey.IsNull && qmd.IsKey.Value) {
fx\src\data\System\Data\SqlClient\TdsParser.cs (2)
9996if (((SqlBoolean)value).Value == true) 10960return SerializeLong(((SqlBoolean)value).Value == true ? 1 : 0, stateObj);
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (1)
416return (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'/>. 149return x.Value; 243return IsNull ? SQLResource.NullString : Value.ToString((IFormatProvider)null); 549return (this == i).Value; 557return 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)
549return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (1)
609return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
3207return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
469return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (1)
345return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
558return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
570return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
624return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
609return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
473return (this == i).Value;
fx\src\data\System\Data\SQLTypes\SQLString.cs (2)
511return x.IsNull ? Null : new SqlString((x.Value).ToString()); 960return (this == i).Value;