Partager via


SyndicationContent.AttributeExtensions Propriété

Définition

Obtient les extensions d'attribut pour ce contenu.

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)

Valeur de propriété

Dictionary<XmlQualifiedName,String>

Dictionnaire qui contient les extensions d'attribut pour cet objet.

Exemples

Le code XML suivant montre comment un attribut personnalisé ajouté à une instance de TextSyndicationContent est sérialisé en Atom 1.0.

<content type="text" customAttribute="value">Some text content</content>  

Remarques

Les extensions d’attribut sont des attributs personnalisés qui ne sont pas définis par les spécifications Atom 1.0 ou RSS 2.0. Le modèle objet de syndication vous permet d'ajouter des attributs personnalisés à un type de contenu de syndication (par exemple, TextSyndicationContent). Lorsqu'ils sont sérialisés en Atom 1.0, ces attributs apparaissent dans l'élément <content>. Lorsqu'ils sont sérialisés en RSS 2.0, ces attributs sont ignorés.

S’applique à