3 writes to callback
System.Activities (3)
System\Activities\Runtime\CallbackWrapper.cs (3)
36
this.
callback
= callback;
138
this.
callback
= GenerateCallback(delegateType, parameterTypes, genericParameter);
230
this.
callback
= RecreateCallback(delegateType, methodInfo);
10 references to callback
System.Activities (10)
System\Activities\Runtime\CallbackWrapper.cs (10)
55
return this.
callback
== null && this.callbackName == null;
63
return this.
callback
;
136
if (this.
callback
== null)
139
Fx.Assert(this.
callback
!= null, "GenerateCallback should have been able to produce a non-null callback.");
148
Fx.Assert(this.
callback
!= null && this.callbackName != null, "We must have a callback and a callback name");
150
if (!this.
callback
.Equals(GenerateCallback(delegateType, parameterTypes, genericParameter)))
152
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.InvalidExecutionCallback(this.
callback
.Method, null)));
223
if (this.
callback
== null)
309
MethodInfo method = this.
callback
.Method;
336
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.InvalidExecutionCallback(this.
callback
.Method, null)));