SyndicationCategory.Scheme 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 ou définit le schéma de la catégorie.
public:
property System::String ^ Scheme { System::String ^ get(); void set(System::String ^ value); };
public string Scheme { get; set; }
member this.Scheme : string with get, set
Public Property Scheme As String
Valeur de propriété
Schéma de la catégorie.
Exemples
Le code XML suivant montre comment la propriété Scheme est sérialisée en Atom 1.0.
<category customAttribute="value" term="FeedCategory" label="CategoryLabel" scheme="CategoryScheme"/>
Le code XML suivant montre comment la propriété Scheme est sérialisée en RSS 2.0.
<category customAttribute="value" domain="CategoryScheme">FeedCategory</category>
Remarques
Lorsqu’elle est sérialisée dans Atom 1.0, la Scheme propriété est écrite dans l’attribut scheme
de l’élément <category>
.
Lorsqu’elle est sérialisée dans RSS 2.0, la Scheme propriété est écrite dans l’attribut domain
de l’élément <category>
.