C# Class ConvertLib.WsdlFile

Defines a WSDL file to be processed.
显示文件 Open project: amaechler/sudzc Class Usage Examples

Public Methods

Method Description
ExpandImports ( XmlDocument doc ) : void
FromString ( string value ) : List

Gets a list of WSDL files from a delimited string.

FromString ( string value, string username, string password ) : List

Gets a list of WSDL files from a delimited string.

FromString ( string value, string username, string password, string domain ) : List

Gets a list of WSDL files from a delimited string.

GetAbsoluteUrl ( string url ) : string

Returns an absolute URL from a partial one.

GetStringFromUrl ( string path, string username, string password, string domain ) : string

Loads a URL string from a path.

GetXmlDocumentFromUrl ( string path, string username, string password, string domain ) : XmlDocument

Gets the XML document from the specified URL path.

Private Methods

Method Description
expandImports ( XmlDocument doc ) : void

Expands the imports contained in the XML document.

Method Details

ExpandImports() public static method

public static ExpandImports ( XmlDocument doc ) : void
doc System.Xml.XmlDocument
return void

FromString() public static method

Gets a list of WSDL files from a delimited string.
public static FromString ( string value ) : List
value string The files to load.
return List

FromString() public static method

Gets a list of WSDL files from a delimited string.
public static FromString ( string value, string username, string password ) : List
value string The files to load.
username string The username to use for authentication.
password string The password to use for authentication.
return List

FromString() public static method

Gets a list of WSDL files from a delimited string.
public static FromString ( string value, string username, string password, string domain ) : List
value string The files to load.
username string The username to use for authentication.
password string The password to use for authentication.
domain string The domain to use for authentication.
return List

GetAbsoluteUrl() public static method

Returns an absolute URL from a partial one.
public static GetAbsoluteUrl ( string url ) : string
url string The URL to resolve to an absolute URL.
return string

GetStringFromUrl() public static method

Loads a URL string from a path.
public static GetStringFromUrl ( string path, string username, string password, string domain ) : string
path string The path from which to load URLs.
username string The username to use for authentication.
password string The password to use for authentication.
domain string The domain to use for authentication.
return string

GetXmlDocumentFromUrl() public static method

Gets the XML document from the specified URL path.
public static GetXmlDocumentFromUrl ( string path, string username, string password, string domain ) : XmlDocument
path string The path where the XML document can be found.
username string The username to use for authentication.
password string The password to use for authentication.
domain string The domain to use for authentication.
return System.Xml.XmlDocument