SyndicationItem.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)

Значение свойства

Dictionary<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-коде демонстрируется сериализация Atom 1.0 экземпляра SyndicationItem с настраиваемым атрибутом itemAttrib.

<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>. Полный пример добавления расширения атрибута см. в примере расширений с слабо типизированным типом .

Применяется к