Implemented interface member:
property
Value
System.Data.IDataParameter.Value
2 overrides of Value
System.Data.Odbc (1)
System\Data\Odbc\OdbcParameter.cs (1)
1113public override object? Value
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
373public override object? Value { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
5 writes to Value
System.Data.Common (3)
System\Data\Common\DBCommandBuilder.cs (3)
1148p.Value = value; 1154p.Value = ADP.IsNull(value) ? DbDataAdapter.s_parameterValueNullValue : DbDataAdapter.s_parameterValueNonNullValue; 1200p.Value = value;
System.Data.Odbc (2)
src\libraries\Common\src\System\Data\ProviderBase\DbMetaDataFactory.cs (2)
136restrictionParameter.Value = restrictions[i]; 141restrictionParameter.Value = DBNull.Value;