3 writes to tempAutoGeneratedArguments
System.Activities (3)
System\Activities\Activity.cs (3)
783
this.
tempAutoGeneratedArguments
= new Collection<RuntimeArgument>();
794
this.
tempAutoGeneratedArguments
= null;
1108
this.
tempAutoGeneratedArguments
= null;
8 references to tempAutoGeneratedArguments
System.Activities (8)
System\Activities\Activity.cs (8)
781
if (this.
tempAutoGeneratedArguments
== null)
786
string name = generatedArgumentPrefix + this.
tempAutoGeneratedArguments
.Count.ToString(CultureInfo.InvariantCulture);
788
this.
tempAutoGeneratedArguments
.Add(argument);
1087
if (this.
tempAutoGeneratedArguments
!= null)
1089
Fx.Assert(this.
tempAutoGeneratedArguments
.Count > 0, "We should only have a non-null value here if we generated an argument");
1098
this.arguments = this.
tempAutoGeneratedArguments
;
1102
for (int i = 0; i < this.
tempAutoGeneratedArguments
.Count; i++)
1104
this.arguments.Add(this.
tempAutoGeneratedArguments
[i]);