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