SyndicationFeed.Title 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
피드의 제목을 가져오거나 설정합니다.
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 인스턴스입니다.
예제
다음 코드에서는 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으로 serialize되는 방법을 보여 줍니다.
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으로 serialize되는 방법을 보여 줍니다.
<title>피드 제목</title>
설명
Atom 1.0 및 RSS 2.0 Title 으로 직렬화되면 속성이 요소에 <title>
기록됩니다.