5 writes to tempValidationErrors
System.Activities (5)
System\Activities\Activity.cs (5)
753this.tempValidationErrors = validationErrors; 765this.tempValidationErrors = null; 773this.tempValidationErrors = new Collection<ValidationError>(); 1113ActivityValidationServices.ValidateEvaluationOrder(this.arguments, this, ref this.tempValidationErrors); 1133this.tempValidationErrors = null;
10 references to tempValidationErrors
System.Activities (10)
System\Activities\Activity.cs (10)
523return (this.tempValidationErrors != null && this.tempValidationErrors.Count > 0); 758if (this.tempValidationErrors != null) 760for (int i = 0; i < this.tempValidationErrors.Count; i++) 762ActivityUtilities.Add(ref newList, this.tempValidationErrors[i]); 771if (this.tempValidationErrors == null) 776this.tempValidationErrors.Add(validationError); 1116if (this.tempValidationErrors != null) 1123for (int i = 0; i < this.tempValidationErrors.Count; i++) 1125ValidationError validationError = this.tempValidationErrors[i];