2 writes to fieldInfo
System.Activities (2)
System\Activities\ExpressionUtilities.cs (2)
393
this.
fieldInfo
= fieldInfo;
433
set { this.
fieldInfo
= value; }
7 references to fieldInfo
System.Activities (7)
System\Activities\ExpressionUtilities.cs (7)
404
if (this.owner == null && !this.
fieldInfo
.IsStatic)
406
throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.
fieldInfo
.Name)));
409
return (T)this.
fieldInfo
.GetValue(this.owner);
413
if (this.owner == null && !this.
fieldInfo
.IsStatic)
415
throw FxTrace.Exception.AsError(new NullReferenceException(SR.CannotDereferenceNull(this.
fieldInfo
.Name)));
418
this.
fieldInfo
.SetValue(this.owner, value);
432
get { return this.
fieldInfo
; }