5 writes to arguments
System.Activities (5)
System\Activities\Activity.cs (5)
715
this.
arguments
= arguments;
735
this.
arguments
= new Collection<RuntimeArgument>();
1069
this.
arguments
= null;
1098
this.
arguments
= this.tempAutoGeneratedArguments;
1138
this.
arguments
= emptyArguments;
17 references to arguments
System.Activities (17)
System\Activities\Activity.cs (17)
355
return this.
arguments
;
718
if (this.
arguments
!= null && this.
arguments
.Count > 0)
720
for (int i = 0; i < this.
arguments
.Count; i++)
722
RuntimeArgument argument = this.
arguments
[i];
727
this.
arguments
.QuickSort(RuntimeArgument.EvaluationOrderComparer);
733
if (this.
arguments
== null)
740
int insertionIndex = this.
arguments
.BinarySearch(argument, RuntimeArgument.EvaluationOrderComparer);
743
this.
arguments
.Insert(~insertionIndex, argument);
747
this.
arguments
.Insert(insertionIndex, argument);
1096
if (this.
arguments
== null)
1104
this.
arguments
.Add(this.tempAutoGeneratedArguments[i]);
1111
if (this.
arguments
!= null && this.
arguments
.Count > 1)
1113
ActivityValidationServices.ValidateEvaluationOrder(this.
arguments
, this, ref this.tempValidationErrors);
1136
if (this.
arguments
== null)
1142
this.symbolCount += this.
arguments
.Count;