Implemented interface member:
property
CommandTimeout
System.Data.IDbCommand.CommandTimeout
3 overrides of CommandTimeout
System.Data.Common (1)
System\Data\Common\DbDataSource.cs (1)
283public override int CommandTimeout
System.Data.Odbc (1)
System\Data\Odbc\OdbcCommand.cs (1)
178public override int CommandTimeout
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
22public override int CommandTimeout { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
3 writes to CommandTimeout
System.Data.Common (2)
System\Data\Common\DBCommandBuilder.cs (1)
1467command.CommandTimeout = select.CommandTimeout;
System\Data\Common\DbDataSource.cs (1)
286set => _wrappedCommand.CommandTimeout = value;
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\ProviderBase\DbMetaDataFactory.cs (1)
127command.CommandTimeout = Math.Max(command.CommandTimeout, 180);
3 references to CommandTimeout
System.Data.Common (2)
System\Data\Common\DBCommandBuilder.cs (1)
1467command.CommandTimeout = select.CommandTimeout;
System\Data\Common\DbDataSource.cs (1)
285get => _wrappedCommand.CommandTimeout;
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\ProviderBase\DbMetaDataFactory.cs (1)
127command.CommandTimeout = Math.Max(command.CommandTimeout, 180);