SyndicationPerson.WriteAttributeExtensions(XmlWriter, String) Method

Definition

Writes the attribute extensions to the specified XmlWriter using the specified syndication version.

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

Parameters

writer
XmlWriter

The XmlReader to write to.

version
String

The syndication version to use while writing.

Remarks

Attribute extensions are custom attributes that are not defined by the Atom 1.0 or RSS 2.0 specifications. They are serialized as an attribute of the <author> or <contributor> element for Atom 1.0 or <managingEditor>, <a10:author>, or <a10:contributor> element for RSS 2.0. This method is an extension point that allows you to handle the serialization of custom attribute extensions. To do this, you must derive a class from SyndicationLink and override this method. This method is called for all unrecognized attribute extensions.

Applies to