Implemented interface member:
property
CommandType
System.Data.IDbCommand.CommandType
3 overrides of CommandType
System.Data.Common (1)
System\Data\Common\DbDataSource.cs (1)
289public override CommandType CommandType
System.Data.Odbc (1)
System\Data\Odbc\OdbcCommand.cs (1)
215public override CommandType CommandType
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
25public override System.Data.CommandType CommandType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
4 writes to CommandType
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreEncryptPersonalDataTest.cs (2)
126command.CommandType = System.Data.CommandType.Text; 148command.CommandType = System.Data.CommandType.Text;
System.Data.Common (2)
System\Data\Common\DBCommandBuilder.cs (1)
1470command.CommandType = CommandType.Text;
System\Data\Common\DbDataSource.cs (1)
292set => _wrappedCommand.CommandType = value;
1 reference to CommandType
System.Data.Common (1)
System\Data\Common\DbDataSource.cs (1)
291get => _wrappedCommand.CommandType;