C# Class ConvertLib.WsdlFile

Defines a WSDL file to be processed.
Afficher le fichier Open project: amaechler/sudzc Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
expandImports ( XmlDocument doc ) : void

Expands the imports contained in the XML document.

Method Details

ExpandImports() public static méthode

public static ExpandImports ( XmlDocument doc ) : void
doc System.Xml.XmlDocument
Résultat void

FromString() public static méthode

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

FromString() public static méthode

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.
Résultat List

FromString() public static méthode

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.
Résultat List

GetAbsoluteUrl() public static méthode

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

GetStringFromUrl() public static méthode

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.
Résultat string

GetXmlDocumentFromUrl() public static méthode

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.
Résultat System.Xml.XmlDocument