SyndicationFeed.Title 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 titre du flux de données.
public:
property System::ServiceModel::Syndication::TextSyndicationContent ^ Title { System::ServiceModel::Syndication::TextSyndicationContent ^ get(); void set(System::ServiceModel::Syndication::TextSyndicationContent ^ value); };
public System.ServiceModel.Syndication.TextSyndicationContent Title { get; set; }
member this.Title : System.ServiceModel.Syndication.TextSyndicationContent with get, set
Public Property Title As TextSyndicationContent
Valeur de propriété
Instance TextSyndicationContent contenant le titre du flux.
Exemples
Le code suivant illustre la définition de la propriété Title d'une instance de SyndicationFeed.
SyndicationFeed feed = new SyndicationFeed();
feed.Title = new TextSyndicationContent("My Feed Title");
Dim feed As New SyndicationFeed()
feed.Title = New TextSyndicationContent("My Feed Title")
Le code XML suivant montre comment la propriété Title est sérialisée en Atom 1.0.
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Generator = "Generator Name or Description";
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Generator = "Generator Name or Description"
<title type="text">Feed Title</title>
Le code XML suivant montre comment la propriété Title est sérialisée en RSS 2.0.
<title>Titre du flux</title>
Remarques
Lorsqu’elle est sérialisée dans Atom 1.0 et RSS 2.0, la Title propriété est écrite dans un <title>
élément.