SyndicationLink.ElementExtensions 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 SyndicationLink 的項目延伸。
public:
property System::ServiceModel::Syndication::SyndicationElementExtensionCollection ^ ElementExtensions { System::ServiceModel::Syndication::SyndicationElementExtensionCollection ^ get(); };
public System.ServiceModel.Syndication.SyndicationElementExtensionCollection ElementExtensions { get; }
member this.ElementExtensions : System.ServiceModel.Syndication.SyndicationElementExtensionCollection
Public ReadOnly Property ElementExtensions As SyndicationElementExtensionCollection
屬性值
SyndicationElementExtensionCollection,其中包含 SyndicationLink 的項目延伸。
範例
下列程式碼會示範如何將項目延伸加入至新聞訂閱連結。
SyndicationLink link = new SyndicationLink();
link.ElementExtensions.Add("simpleString", "", "hello, world!");
Dim link As New SyndicationLink()
link.ElementExtensions.Add("simpleString", "", "hello, world!")
備註
項目延伸是指 Atom 1.0 或 RSS 2.0 規格中未指定的有效 XML 項目。 假設某個有效 XML 項目的命名空間與封入命名空間不同,您便可將任何此類項目新增為延伸。