SecurityElement.Tag Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the tag name of an XML element.
public:
property System::String ^ Tag { System::String ^ get(); void set(System::String ^ value); };
public string Tag { get; set; }
member this.Tag : string with get, set
Public Property Tag As String
Property Value
The tag name of an XML element.
Exceptions
The tag is null
.
The tag is not valid in XML.
Examples
The following code shows the use of the Tag property to get the tag name of an XML element. This code example is part of a larger example provided for the SecurityElement class.
String^ xmlTreeName = xmlElement->Tag->ToString();
string xmlTreeName = xmlElement.Tag.ToString();
Dim xmlTreeName As String = xmlElement.Tag.ToString()
Remarks
In XML, the tag appears in the script as appears below:
<tag attributes>text</tag>
If this element has child elements, the children will replace text
.
Assign only valid XML tag strings to this property. Use Escape to remove invalid characters from the string.