2 writes to _commandSet
System.Data (2)
fx\src\data\System\Data\SqlClient\SqlDataAdapter.cs (2)
210
_commandSet
= new SqlCommandSet();
247
_commandSet
= null;
16 references to _commandSet
System.Data (16)
fx\src\data\System\Data\SqlClient\SqlDataAdapter.cs (16)
169
int commandIdentifier =
_commandSet
.CommandCount;
170
_commandSet
.Append((SqlCommand)command);
175
_commandSet
.Clear();
191
Debug.Assert(null !=
_commandSet
&& (0 <
_commandSet
.CommandCount), "no commands");
193
return
_commandSet
.ExecuteNonQuery();
197
Debug.Assert(commandIdentifier <
_commandSet
.CommandCount, "commandIdentifier out of range");
198
Debug.Assert(parameterIndex <
_commandSet
.GetParameterCount(commandIdentifier), "parameter out of range");
199
IDataParameter parameter =
_commandSet
.GetParameter(commandIdentifier, parameterIndex);
204
Debug.Assert(commandIdentifier <
_commandSet
.CommandCount, "commandIdentifier out of range");
205
return
_commandSet
.GetBatchedAffected(commandIdentifier, out recordsAffected, out error);
222
_commandSet
.Connection = command.Connection;
223
_commandSet
.Transaction = command.Transaction;
224
_commandSet
.CommandTimeout = command.CommandTimeout;
245
if (null !=
_commandSet
) {
246
_commandSet
.Dispose();