2 writes to callbackName
System.Activities (2)
System\Activities\Runtime\CallbackWrapper.cs (2)
71
set { this.
callbackName
= value; }
310
this.
callbackName
= method.Name;
7 references to callbackName
System.Activities (7)
System\Activities\Runtime\CallbackWrapper.cs (7)
55
return this.callback == null && this.
callbackName
== null;
70
get { return this.
callbackName
; }
148
Fx.Assert(this.callback != null && this.
callbackName
!= null, "We must have a callback and a callback name");
163
if (potentialMatch.IsGenericMethod && potentialMatch.Name == this.
callbackName
)
236
Fx.Assert(this.
callbackName
!= null, "This should only be called when there is actually a callback to run.");
262
return declaringType.GetMethod(this.
callbackName
, bindingFlags, null, parameters, null);
307
if (this.
callbackName
== null && !this.IsCallbackNull)