SyndicationFeed.Title Свойство

Определение

Возвращает или задает заголовок канала.

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

Значение свойства

TextSyndicationContent

Экземпляр TextSyndicationContent, в котором содержится заголовок веб-канала.

Примеры

В следующем примере кода показано, как задать свойство Title экземпляра SyndicationFeed.

SyndicationFeed feed = new SyndicationFeed();
feed.Title = new TextSyndicationContent("My Feed Title");
Dim feed As New SyndicationFeed()
feed.Title = New TextSyndicationContent("My Feed Title")

В следующем XML-коде показано, как свойство Title сериализуется в 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>

В следующем XML-коде показано, как свойство Title сериализуется в RSS 2.0.

<title>Название веб-канала</title>

Комментарии

При сериализации в Atom 1.0 и RSS 2.0 Title свойство записывается в <title> элемент.

Применяется к