1 write to command
System.WorkflowServices (1)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (1)
1053
this.
command
= this.provider.CreateCommand(connection, timeoutHelper.RemainingTime());
10 references to command
System.WorkflowServices (10)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (10)
1055
this.handler.SetupCommand(this.
command
, this.id, additionalParameters);
1061
result = this.
command
.BeginExecuteReader(commandCallback, this);
1065
result = this.
command
.BeginExecuteNonQuery(commandCallback, this);
1085
this.provider.CleanupCommand(this.
command
);
1106
this.provider.CleanupCommand(this.
command
);
1158
operationResult.
command
.Connection.Close();
1159
operationResult.provider.CleanupCommand(operationResult.
command
);
1180
using (SqlDataReader reader = this.
command
.EndExecuteReader(result))
1187
this.
command
.EndExecuteNonQuery(result);
1190
int resultCode = (int)this.
command
.Parameters["@result"].Value;