C# 클래스 ConvertLib.WsdlFile

Defines a WSDL file to be processed.
파일 보기 프로젝트 열기: amaechler/sudzc 1 사용 예제들

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
expandImports ( XmlDocument doc ) : void

Expands the imports contained in the XML document.

메소드 상세

ExpandImports() 공개 정적인 메소드

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

FromString() 공개 정적인 메소드

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

FromString() 공개 정적인 메소드

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.
리턴 List

FromString() 공개 정적인 메소드

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.
리턴 List

GetAbsoluteUrl() 공개 정적인 메소드

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

GetStringFromUrl() 공개 정적인 메소드

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.
리턴 string

GetXmlDocumentFromUrl() 공개 정적인 메소드

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.
리턴 System.Xml.XmlDocument