1 write to propertyInfo
System.Activities (1)
System\Activities\Expressions\ValueTypePropertyReference.cs (1)
62this.propertyInfo = typeof(TOperand).GetProperty(this.PropertyName);
8 references to propertyInfo
System.Activities (8)
System\Activities\Expressions\ValueTypePropertyReference.cs (8)
63if (this.propertyInfo == null) 70if (this.propertyInfo != null) 72this.setMethod = this.propertyInfo.GetSetMethod(); 73this.getMethod = this.propertyInfo.GetGetMethod(); 77metadata.AddValidationError(SR.MemberIsReadOnly(propertyInfo.Name, typeof(TOperand))); 86if (this.propertyInfo != null) 103Fx.Assert(this.propertyInfo != null, "propertyInfo must not be null"); 104return new PropertyLocation(this.propertyInfo, this.getFunc, this.setFunc, operandLocationValue);