SyndicationFeed.Id 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 l’ID du flux.
public:
property System::String ^ Id { System::String ^ get(); void set(System::String ^ value); };
public string Id { get; set; }
member this.Id : string with get, set
Public Property Id As String
Valeur de propriété
ID du flux.
Exemples
Le code suivant illustre la définition de la propriété Id sur une instance SyndicationFeed.
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Id = "SyndicationFeedId";
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Id = "SyndicationFeedId"
Le code XML suivant montre comment la propriété Id est sérialisée en Atom 1.0.
<id>FeedID</id>
Le code XML suivant montre comment la propriété Id est sérialisée en RSS 2.0.
<a10:id>FeedID</a10:id>
Remarques
Lorsqu’il est sérialisé dans Atom 1.0, il Id est écrit dans un <id>
élément.
Lorsqu’il est sérialisé sur RSS 2.0, il Id est écrit dans un <a10:id>
élément.