1 write to parameters
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\ToReply.cs (1)
69
this.
parameters
= new Collection<InArgument>();
10 references to parameters
System.ServiceModel.Activities (10)
System\ServiceModel\Activities\ToReply.cs (10)
67
if (this.
parameters
== null)
71
return this.
parameters
;
97
if (this.
parameters
!= null)
100
foreach (InArgument parameter in this.
parameters
)
180
Fx.Assert(this.
parameters
.Count == 1, "Exception should be the only parameter!");
181
Exception exception = this.
parameters
[0].Get(context) as Exception;
235
if (this.
parameters
!= null)
237
inObjects = new object[this.
parameters
.Count];
238
for (int i = 0; i < this.
parameters
.Count; i++)
241
inObjects[i] = this.
parameters
[i].Get(context);