2 writes to propertyInfo
System.Activities (2)
System\Activities\Expressions\ValueTypePropertyReference.cs (2)
121
this.
propertyInfo
= propertyInfo;
176
set { this.
propertyInfo
= value; }
7 references to propertyInfo
System.Activities (7)
System\Activities\Expressions\ValueTypePropertyReference.cs (7)
140
if (this.
propertyInfo
.GetGetMethod() == null && TypeHelper.AreTypesCompatible(this.
propertyInfo
.DeclaringType, typeof(Location)) == false)
142
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.WriteonlyPropertyCannotBeRead(this.
propertyInfo
.DeclaringType, this.
propertyInfo
.Name)));
145
return (TResult)this.
propertyInfo
.GetValue(this.ownerLocation.Value, null);
156
this.
propertyInfo
.SetValue(copy, value, null);
175
get { return this.
propertyInfo
; }