Udostępnij za pośrednictwem


SyndicationLink.Title Właściwość

Definicja

Pobiera lub ustawia tytuł połączonego zasobu.

public:
 property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
public string Title { get; set; }
member this.Title : string with get, set
Public Property Title As String

Wartość właściwości

String

Tytuł połączonego zasobu.

Przykłady

Poniższy kod pokazuje, jak ustawić tytuł linku syndykacji.

SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);

SyndicationLink link = new SyndicationLink(new Uri("http://server/link"), "alternate", "Link Title", "text/html", 1000);
feed.Links.Add(link);
Dim feed As SyndicationFeed = New SyndicationFeed("Feed Title", "Feed Description", New Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now)

Dim link As SyndicationLink = New SyndicationLink(New Uri("http://server/link"), "alternate", "Link Title", "text/html", 1000)
feed.Links.Add(link)

Poniższy kod XML pokazuje, jak Title właściwość jest serializowana do atomu 1.0.

<link customAttribute="value" rel="alternate" type="text/html" title="Link Title" length="1000" href="http://server/link" />

Poniższy kod XML pokazuje, jak Title właściwość jest serializowana do rss 2.0.

<a10:link customAttribute="value" rel="alternate" type="text/html" title="Link Title" length="1000" href="http://server/link" />

Uwagi

W przypadku serializacji do atomu 1.0 ta wartość jest zapisywana jako title atrybut w elemencie <link> .

Po serializacji do RSS 2.0 tytuł jest zapisywany jako title atrybut w elemecie <a10:link> .

Dotyczy