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