2 writes to owner
System.Activities (2)
System\Activities\Expressions\PropertyReference.cs (2)
120this.owner = owner; 171set { this.owner = value; }
7 references to owner
System.Activities (7)
System\Activities\Expressions\PropertyReference.cs (7)
135if (!this.propertyInfo.GetGetMethod().IsStatic && this.owner == null) 140return (T)this.getFunc(this.owner, new object[0]); 147return (T)this.propertyInfo.GetValue(this.owner, null); 153if (!this.propertyInfo.GetSetMethod().IsStatic && this.owner == null) 158this.setFunc(this.owner, new object[] { value }); 162this.propertyInfo.SetValue(this.owner, value, null); 170get { return this.owner; }