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