| DeploymentLocationFromXPathNavigator Method |
Create a deployment location instance from an XPath navigator
containing the settings.
Namespace: SandcastleBuilder.PlugInsAssembly: SandcastleBuilder.PlugIns (in SandcastleBuilder.PlugIns.dll) Version: 2014.11.22.0
Syntax public static DeploymentLocation FromXPathNavigator(
XPathNavigator navigator,
string id
)
Public Shared Function FromXPathNavigator (
navigator As XPathNavigator,
id As String
) As DeploymentLocation
public:
static DeploymentLocation^ FromXPathNavigator(
XPathNavigator^ navigator,
String^ id
)
static member FromXPathNavigator :
navigator : XPathNavigator *
id : string -> DeploymentLocation
Parameters
- navigator
- Type: System.Xml.XPathXPathNavigator
The XPath navigator from which to
obtain the settings. - id
- Type: SystemString
The id of the element to load
Return Value
Type:
DeploymentLocationA
DeploymentLocation object containing the
settings from the XPath navigator.
Remarks It should contain an element called deploymentLocation
with two attributes (id with the specified ID value and
location) and nested userCredentials and
proxyCredentials elements.
See Also