Udostępnij za pośrednictwem


SyndicationItem.AttributeExtensions Właściwość

Definicja

Pobiera rozszerzenia atrybutów dla elementu syndykacji.

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)

Wartość właściwości

Dictionary<XmlQualifiedName,String>

Słownik zawierający kolekcję rozszerzeń atrybutów.

Przykłady

Poniższy kod pokazuje, jak dodać rozszerzenie atrybutu do źródła danych syndykacji.

SyndicationItem item = new SyndicationItem();
item.AttributeExtensions.Add(new XmlQualifiedName("myAttribute", ""), "someValue");
Dim item As New SyndicationItem()
item.AttributeExtensions.Add(New XmlQualifiedName("myAttribute", ""), "someValue")

Poniższy kod XML przedstawia serializacji SyndicationItem atomu 1.0 wystąpienia z atrybutem niestandardowym o nazwie itemAttrib.

<link rel="alternate" href="http://someserver/MyItem" />
<content type="text">This is some content</content>

Poniższy kod przedstawia to samo SyndicationItem wystąpienie serializowane jako 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>to jest podsumowanie dla mojego elementu</description>
  <a10:content type="text">This is some content</a10:content>
</item>

Uwagi

Model obiektów Syndication umożliwia dodawanie atrybutów niestandardowych do SyndicationItem wystąpienia. W przypadku serializacji dla programu Atom 1.0 atrybut niestandardowy jest zapisywany w elemencie <entry> . W przypadku serializacji dla funkcji RSS 2.0 atrybut niestandardowy jest zapisywany w elemecie <item> . Kompletny przykład pokazujący sposób dodawania rozszerzenia atrybutu można znaleźć w przykładzie Loosely-Typed Extensions (Luźno wpisane rozszerzenia ).

Dotyczy