3 implementations of Value
System.Data.Common (1)
System\Data\Common\DbParameter.cs (1)
78
public abstract object?
Value
{ get; set; }
System.Data.Odbc (1)
System\Data\Odbc\OdbcParameter.cs (1)
1113
public override object?
Value
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
373
public override object?
Value
{ get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
3 writes to Value
System.Data.Common (3)
System\Data\Common\DbDataAdapter.cs (3)
765
parameter.
Value
= row[dataColumn, version];
769
parameter.
Value
= null;
776
parameter.
Value
= ADP.IsNull(parameter.Value) ? s_parameterValueNullValue : s_parameterValueNonNullValue;
2 references to Value
System.Data.Common (2)
System\Data\Common\DbDataAdapter.cs (2)
776
parameter.Value = ADP.IsNull(parameter.
Value
) ? s_parameterValueNullValue : s_parameterValueNonNullValue;
787
object? value = parameter.
Value
;