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