| DeploymentLocationToXml Method |
Store the deployment location as a node in the given XML document
Namespace: SandcastleBuilder.PlugInsAssembly: SandcastleBuilder.PlugIns (in SandcastleBuilder.PlugIns.dll) Version: 2014.11.22.0
Syntax public XmlNode ToXml(
XmlDocument config,
XmlNode root,
string id
)
Public Function ToXml (
config As XmlDocument,
root As XmlNode,
id As String
) As XmlNode
public:
XmlNode^ ToXml(
XmlDocument^ config,
XmlNode^ root,
String^ id
)
member ToXml :
config : XmlDocument *
root : XmlNode *
id : string -> XmlNode
Parameters
- config
- Type: System.XmlXmlDocument
The XML document - root
- Type: System.XmlXmlNode
The node in which to store the element - id
- Type: SystemString
The id of the element to create
Return Value
Type:
XmlNodeReturns the node that was added or the one that
already existed in the document.
Remarks The deployment location is stored in an element called
deploymentLocation with two attributes (id matching
the specified id and location) and nested
userCredentials and proxyCredentials elements. It
is created if it does not already exist.
See Also