3 writes to ArgumentName
System.Activities (3)
System\Activities\Expressions\ArgumentReference.cs (1)
22this.ArgumentName = argumentName;
System\Activities\Expressions\ExpressionServices.cs (2)
758result = new ArgumentReference<TResult> { ArgumentName = property.Name }; 1568ArgumentName = runtimeArgument.Name,
6 references to ArgumentName
System.Activities (6)
System\Activities\Expressions\ArgumentReference.cs (6)
40if (string.IsNullOrEmpty(this.ArgumentName)) 46this.targetArgument = ActivityUtilities.FindArgument(this.ArgumentName, this); 50metadata.AddValidationError(SR.ArgumentNotFound(this.ArgumentName)); 54metadata.AddValidationError(SR.ArgumentTypeMustBeCompatible(this.ArgumentName, this.targetArgument.Type, typeof(T))); 61if (!string.IsNullOrEmpty(this.ArgumentName)) 63return this.ArgumentName;