SyndicationItem::WriteAttributeExtensions Method (XmlWriter^, String^)
.NET Framework (current version)
Writes the attribute extensions to the specified XmlWriter using the specified syndication version.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public protected: virtual void WriteAttributeExtensions( XmlWriter^ writer, String^ version )
Parameters
- writer
-
Type:
System.Xml::XmlWriter^
The XmlReader to write to.
- version
-
Type:
System::String^
The syndication version to use while writing.
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 <entry> (for Atom 1.0) or <item> (for RSS 1.0) element, depending upon the syndication version being used. 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 SyndicationItem and override this method. This method is called for all unrecognized attribute extensions.
.NET Framework
Available since 3.5
Silverlight
Available since 2.0
Available since 3.5
Silverlight
Available since 2.0
Show: