50 references to CommandType
Aspire.Dashboard (1)
ServiceClient\TracingSqliteConnection.cs (1)
233
public override
CommandType
CommandType
netstandard (1)
netstandard.cs (1)
446
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.
CommandType
))]
System.Data (1)
parent\ref\System.Data.cs (1)
18
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.
CommandType
))]
System.Data.Common (6)
System\Data\Common\DbBatchCommand.cs (1)
13
public abstract
CommandType
CommandType { get; set; }
System\Data\Common\DbCommand.cs (2)
24
[DefaultValue(System.Data.
CommandType
.Text)]
26
public abstract
CommandType
CommandType { get; set; }
System\Data\Common\DBCommandBuilder.cs (1)
1470
command.CommandType =
CommandType
.Text;
System\Data\Common\DbDataSource.cs (1)
289
public override
CommandType
CommandType
System\Data\IDbCommand.cs (1)
15
CommandType
CommandType { get; set; }
System.Data.Odbc (17)
Common\System\Data\Common\AdapterUtil.Odbc.cs (2)
88
internal static ArgumentOutOfRangeException InvalidCommandType(
CommandType
value)
100
return InvalidEnumerationValue(typeof(
CommandType
), (int)value);
System\Data\Odbc\Odbc32.cs (2)
38
internal static ArgumentOutOfRangeException NotSupportedCommandType(
CommandType
value)
54
return ODBC.NotSupportedEnumerationValue(typeof(
CommandType
), (int)value);
System\Data\Odbc\OdbcCommand.cs (10)
27
private
CommandType
_commandType;
210
DefaultValue(System.Data.
CommandType
.Text),
212
public override
CommandType
CommandType
216
CommandType
cmdType = _commandType;
217
return ((0 != cmdType) ? cmdType :
CommandType
.Text);
223
case
CommandType
.Text:
224
case
CommandType
.StoredProcedure:
228
case
CommandType
.TableDirect:
704
&& (CommandType !=
CommandType
.StoredProcedure))
883
if (CommandType ==
CommandType
.TableDirect)
System\Data\Odbc\OdbcCommandBuilder.cs (3)
111
case System.Data.
CommandType
.Text:
113
case System.Data.
CommandType
.StoredProcedure:
115
case System.Data.
CommandType
.TableDirect:
System.Data.OleDb (24)
OleDbCommand.cs (19)
22
private
CommandType
_commandType;
157
[DefaultValue(System.Data.
CommandType
.Text)]
159
public override
CommandType
CommandType
163
CommandType
cmdType = _commandType;
164
return ((0 != cmdType) ? cmdType :
CommandType
.Text);
170
case
CommandType
.Text:
171
case
CommandType
.StoredProcedure:
172
case
CommandType
.TableDirect:
389
Debug.Assert(System.Data.
CommandType
.Text == CommandType || System.Data.
CommandType
.StoredProcedure == CommandType, "CreateAccessor: incorrect CommandType");
648
case
CommandType
.Text:
649
case
CommandType
.StoredProcedure:
653
case
CommandType
.TableDirect:
1039
CommandType
cmdtype = CommandType;
1043
System.Data.
CommandType
.Text => cmdtxt,
1046
System.Data.
CommandType
.StoredProcedure => ExpandStoredProcedureToText(cmdtxt),
1053
System.Data.
CommandType
.TableDirect => cmdtxt,
1188
if (
CommandType
.TableDirect != CommandType)
1193
if (
CommandType
.TableDirect != CommandType)
OleDbCommandBuilder.cs (3)
113
case System.Data.
CommandType
.Text:
115
case System.Data.
CommandType
.StoredProcedure:
117
case System.Data.
CommandType
.TableDirect:
System\Data\Common\AdapterUtil.cs (2)
261
internal static ArgumentOutOfRangeException InvalidCommandType(
CommandType
value)
273
return InvalidEnumerationValue(typeof(
CommandType
), (int)value);