SecurityElement.Tag Property

Definition

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.

Applies to