SyndicationContent.AttributeExtensions Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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é
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.