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


IXMLWriter.WriteStartTag 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.WriteStartTag Method
ArcGIS Developer Help

IXMLWriter.WriteStartTag Method

Writes the starting tag of an element.

[Visual Basic .NET]
Public Sub WriteStartTag ( _
    ByVal LocalName As String, _
    ByVal uri As String, _
    ByVal Attributes As IXMLAttributes, _
    ByVal namespaces As IXMLNamespaces, _
    ByVal isEmpty As Boolean _
)
[C#]
public void WriteStartTag (
    string LocalName,
    string uri,
    IXMLAttributes Attributes,
    IXMLNamespaces namespaces,
    bool isEmpty
);
[C++]
HRESULT WriteStartTag(
  BSTR LocalName,
  BSTR uri,
  IXMLAttributes* Attributes,
  IXMLNamespaces* namespaces,
  VARIANT_BOOL isEmpty
);
[C++]
Parameters
LocalName [in]

LocalName is a parameter of type BSTR uri [in]
uri is a parameter of type BSTR Attributes [in]
Attributes is a parameter of type IXMLAttributes* namespaces [in]
namespaces is a parameter of type IXMLNamespaces* isEmpty [in]
isEmpty is a parameter of type bool

Product Availability

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

Remarks


The WriteStartTag method specifies the starting tag of an element.
For example:

<Length>

 

See Also

IXMLWriter Interface