7 references to MethodName
System.Workflow.Activities (7)
InvokeWebService.cs (7)
124MethodInfo methodInfo = this.ProxyClass.GetMethod(this.MethodName, BindingFlags.Instance | BindingFlags.Public); 138result = this.ProxyClass.InvokeMember(this.MethodName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.InvokeMethod, null, proxyInstance, actualParameters, System.Globalization.CultureInfo.InvariantCulture); 392MethodInfo method = type.GetMethod(this.MethodName); 448if (invokeWebService.MethodName == null || invokeWebService.MethodName.Length == 0) 452MethodInfo methodInfo = proxyClassType.GetMethod(invokeWebService.MethodName); 455ValidationError error = new ValidationError(SR.GetString(SR.Error_MethodNotExists, "MethodName", invokeWebService.MethodName), ErrorNumbers.Error_MethodNotExists);