SyndicationItem.AttributeExtensions 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取联合项的属性扩展。
public:
property System::Collections::Generic::Dictionary<System::Xml::XmlQualifiedName ^, System::String ^> ^ AttributeExtensions { System::Collections::Generic::Dictionary<System::Xml::XmlQualifiedName ^, System::String ^> ^ get(); };
public System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName,string> AttributeExtensions { get; }
member this.AttributeExtensions : System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName, string>
Public ReadOnly Property AttributeExtensions As Dictionary(Of XmlQualifiedName, String)
属性值
一个包含属性扩展集合的字典。
示例
下面的代码说明如何向联合源添加属性扩展。
SyndicationItem item = new SyndicationItem();
item.AttributeExtensions.Add(new XmlQualifiedName("myAttribute", ""), "someValue");
Dim item As New SyndicationItem()
item.AttributeExtensions.Add(New XmlQualifiedName("myAttribute", ""), "someValue")
下面的 XML 代码演示如何将具有自定义属性 SyndicationItem 的 itemAttrib
实例序列化为 Atom 1.0。
<link rel="alternate" href="http://someserver/MyItem" />
<content type="text">This is some content</content>
下面的代码演示如何将相同的 SyndicationItem 实例序列化为 RSS 2.0。
<item p4:itemAttrib="ItemAttribValue" xmlns:p4="http://FeedServer/tags">
<link>http://someserver/MyItem</link>
<link>http://alternate/Link</link>
<source>MyFeed</source>
<link>http://someserver/MyItem</link>
<author>jesper@contoso.com</author>
<description>这是我项的摘要</description>
<a10:content type="text">This is some content</a10:content>
</item>
注解
联合对象模型允许您将自定义属性添加到 SyndicationItem 实例中。 序列化为 Atom 1.0 时,会将自定义属性写入 <entry>
元素中。 序列化为 RSS 2.0 时,会将自定义属性写入 <item>
元素中。 有关如何添加属性扩展的完整示例,请参阅 “松散类型扩展 ”示例。