Click or drag to resize

RemWorkflowGetWebServiceInfo Method

Paperwork .Net Kütüphanesi
İş akışı tasarım ekranında web servislerin metot bilgilerini döner.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_WebServiceInfo GetWebServiceInfo(
	string url,
	string userName,
	string password
)

Parameters

url
Type: SystemString
Web Servis URL
userName
Type: SystemString
password
Type: SystemString

Return Value

Type: a_WebServiceInfo
a_WebServiceInfo tipinde web servislerin metot bilgilerini döner.
Examples
C#
public void GetWebServiceInfo()
{
    string url = "WebServiceUrl";
    a_WebServiceInfo retval = p.rWorkflow.GetWebServiceInfo(url);
    Console.WriteLine(retval.ComplexTypes);
    Console.WriteLine(retval.ServiceName);
    Console.WriteLine(retval.WebMethods);
    Console.ReadLine();
}
See Also