XmlSerializationWriter.WriteEndElement Method

Definition

Writes a <closing> element tag.

Overloads

WriteEndElement()

This API supports the product infrastructure and is not intended to be used directly from your code.

Writes a <closing> element tag.

WriteEndElement(Object)

This API supports the product infrastructure and is not intended to be used directly from your code.

Writes a <closing> element tag.

WriteEndElement()

Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs

Writes a <closing> element tag.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 void WriteEndElement();
protected void WriteEndElement ();
member this.WriteEndElement : unit -> unit
Protected Sub WriteEndElement ()

Remarks

The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

Applies to

WriteEndElement(Object)

Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs

Writes a <closing> element tag.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 void WriteEndElement(System::Object ^ o);
protected void WriteEndElement (object? o);
protected void WriteEndElement (object o);
member this.WriteEndElement : obj -> unit
Protected Sub WriteEndElement (o As Object)

Parameters

o
Object

The object being serialized.

Remarks

The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

Applies to