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