This document is archived and information here might be outdated.  Recommended version.


IXMLWriter.WriteEndTag Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > System > ESRI.ArcGIS.esriSystem > Interfaces > IX > IXMLWriter Interface > IXMLWriter.WriteEndTag Method
ArcGIS Developer Help

IXMLWriter.WriteEndTag Method

Writes the ending tag of an element.

[Visual Basic .NET]
Public Sub WriteEndTag ( _
)
[C#]
public void WriteEndTag (
);
[C++]
HRESULT WriteEndTag(
void
);

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description


The WriteEndTag method specifies the end tag of an element.
For example:

</Length>

If the WriteStartTag method was called with the parameter "IsEmpty" set to True, the WriteEndTag method will not be executed, and the Error will be raised. The WriteStartTag method needs to specify that the Start Tag is not going to be Empty in order to call the WriteEndTag method.

See Also

IXMLWriter Interface