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