HtmlWebCreateInstance Method (String, String, XsltArgumentList, Type, String) |
Creates an instance of the given type from the specified Internet resource.
Namespace:
WorkflowGen.My.HtmlAgilityPack
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.3.0.0 (4.3.0.0)
Syntax public Object CreateInstance(
string htmlUrl,
string xsltUrl,
XsltArgumentList xsltArgs,
Type type,
string xmlPath
)
Public Function CreateInstance (
htmlUrl As String,
xsltUrl As String,
xsltArgs As XsltArgumentList,
type As Type,
xmlPath As String
) As Object
Parameters
- htmlUrl
- Type: SystemString
The requested URL, such as "http://Myserver/Mypath/Myfile.asp". - xsltUrl
- Type: SystemString
The URL that specifies the XSLT stylesheet to load. - xsltArgs
- Type: System.Xml.XslXsltArgumentList
An XsltArgumentList containing the namespace-qualified arguments used as input to the transform. - type
- Type: SystemType
The requested type. - xmlPath
- Type: SystemString
A file path where the temporary XML before transformation will be saved. Mostly used for debugging purposes.
Return Value
Type:
ObjectAn newly created instance.
See Also