This private method adds a text element to the XML document as the last
child of the current element.
Namespace: System.Xml.DirectoryAssembly: System.Xml.Directory (in System.Xml.Directory.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public static void addTextElement(
XmlDocument doc,
XmlElement nodeParent,
string strTag,
string strValue
) |
Visual Basic |
---|
Public Shared Sub addTextElement (
doc As XmlDocument,
nodeParent As XmlElement,
strTag As String,
strValue As String
) |
Visual C++ |
---|
public:
static void addTextElement(
XmlDocument^ doc,
XmlElement^ nodeParent,
String^ strTag,
String^ strValue
) |
F# |
---|
static member addTextElement :
doc : XmlDocument *
nodeParent : XmlElement *
strTag : string *
strValue : string -> unit
|
See Also