SyndicationLink.AttributeExtensions 属性

定义

获取链接的属性扩展。

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)

属性值

一个包含属性扩展集合的字典。

示例

下面的代码说明如何向联合链接添加属性扩展。

SyndicationLink link = new SyndicationLink(new Uri("http://server/link"));
link.AttributeExtensions.Add(new XmlQualifiedName("myAttribute", ""), "someValue");
Dim link As New SyndicationLink(New Uri("http://server/link"))
link.AttributeExtensions.Add(New XmlQualifiedName("myAttribute", ""), "someValue")

注解

AttributeExtensions 允许您将自定义属性添加到 SyndicationLink 中。 序列化为 Atom 1.0 时,自定义属性会出现在 <link> 元素中。 序列化为 RSS 2.0 时,自定义属性会出现在 <a10:link> 元素中。 可添加任何有效的 XML 属性。

适用于