2 writes to beginMethod
System.Activities (2)
System\Activities\Statements\MethodResolver.cs (2)
252
this.
beginMethod
= Resolve(targetType, "Begin" + this.MethodName, bindingFlags,
256
this.
beginMethod
= null;
10 references to beginMethod
System.Activities (10)
System\Activities\Statements\MethodResolver.cs (10)
71
bool useAsyncPattern = this.RunAsynchronously && this.
beginMethod
!= null && this.endMethod != null;
82
formalParameters = this.
beginMethod
.GetParameters();
159
bool useAsyncPattern = this.RunAsynchronously && this.
beginMethod
!= null && this.endMethod != null;
165
TD.InvokeMethodUseAsyncPattern(this.Parent.DisplayName, this.
beginMethod
.ToString(), this.endMethod.ToString());
254
if (this.
beginMethod
!= null && !this.
beginMethod
.ReturnType.Equals(typeof(IAsyncResult)))
267
if (this.
beginMethod
!= null && this.endMethod != null && this.
beginMethod
.IsStatic == this.endMethod.IsStatic)
270
!((AsyncPatternMethodExecutor)oldMethodExecutor).IsTheSame(this.
beginMethod
, this.endMethod))
272
methodExecutor = new AsyncPatternMethodExecutor(metadata, this.
beginMethod
, this.endMethod, this.Parent,