SyndicationItem.WriteElementExtensions(XmlWriter, String) Method

Definition

Writes the element extensions to the specified XmlWriter using the specific syndication version.

protected public:
 virtual void WriteElementExtensions(System::Xml::XmlWriter ^ writer, System::String ^ version);
protected internal virtual void WriteElementExtensions (System.Xml.XmlWriter writer, string version);
abstract member WriteElementExtensions : System.Xml.XmlWriter * string -> unit
override this.WriteElementExtensions : System.Xml.XmlWriter * string -> unit
Protected Friend Overridable Sub WriteElementExtensions (writer As XmlWriter, version As String)

Parameters

writer
XmlWriter

The XmlReader to write to.

version
String

The syndication version to use while writing.

Remarks

Element extensions are valid XML elements that are not specified in either the Atom 1.0 or RSS 2.0 specifications. You can add any valid XML element as an extension, provided its namespace is different from the enclosing namespace. This method is an extension point that allows you to handle the serialization of custom element extensions. To do this, you must derive a class from SyndicationItem and override this method. This method is called for all unrecognized element extensions.

Applies to