1 write to propertyInfo
System.Activities (1)
System\Activities\Expressions\PropertyReference.cs (1)
60this.propertyInfo = operandType.GetProperty(this.PropertyName);
9 references to propertyInfo
System.Activities (9)
System\Activities\Expressions\PropertyReference.cs (9)
62if (this.propertyInfo == null) 68getMethod = this.propertyInfo.GetGetMethod(); 69setMethod = this.propertyInfo.GetSetMethod(); 75if (setMethod == null && TypeHelper.AreTypesCompatible(this.propertyInfo.DeclaringType, typeof(Location)) == false) 77metadata.AddValidationError(SR.ReadonlyPropertyCannotBeSet(this.propertyInfo.DeclaringType, this.propertyInfo.Name)); 87if (propertyInfo != null) 101Fx.Assert(this.propertyInfo != null, "propertyInfo must not be null"); 102return new PropertyLocation<TResult>(this.propertyInfo, this.getFunc, this.setFunc, this.Operand.Get(context));