1 write to ProxyClass
System.Workflow.Activities (1)
Designers\InvokeWebServiceDesigner.cs (1)
54webService.ProxyClass = proxyClass;
11 references to ProxyClass
System.Workflow.Activities (11)
Designers\InvokeWebServiceDesigner.cs (4)
100if (extUIService != null && invokeWebServiceDecl.ProxyClass != null) 102Uri uri = extUIService.GetUrlForProxyClass(invokeWebServiceDecl.ProxyClass); 156if (invokeWebServiceDecl.ProxyClass == null) 162Uri uri = extUIService.GetUrlForProxyClass(invokeWebServiceDecl.ProxyClass);
InvokeWebService.cs (7)
113object proxyInstance = Activator.CreateInstance(this.ProxyClass); 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); 334Type type = this.ProxyClass; 389Type type = this.ProxyClass; 433if (invokeWebService.ProxyClass == null) 445Type proxyClassType = invokeWebService.ProxyClass;