SyndicationFeed.WriteAttributeExtensions(XmlWriter, String) 方法

定义

使用指定的联合版本将属性扩展写入指定的 XmlWriter

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)

参数

writer
XmlWriter

要向其中进行写入的 XmlReader

version
String

要在写入时使用的联合版本。

注解

属性扩展是 Atom 1.0 或 RSS 2.0 规范未定义的自定义属性。 它们序列化为 Atom 1.0) (的属性 <feed> ,或 <rss> RSS 1.0) 元素的 (,具体取决于所使用的联合版本。 此方法是一个扩展点,您可以利用它来处理自定义属性扩展的序列化。 为此,必须从 SyndicationFeed 中派生一个类,并重写此方法。 将为所有无法识别的属性扩展调用此方法。

适用于