SyndicationLink.WriteAttributeExtensions(XmlWriter, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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 <link>
element. 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
.NET