SyndicationLink.AttributeExtensions 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得連結的屬性延伸。
public:
property System::Collections::Generic::Dictionary<System::Xml::XmlQualifiedName ^, System::String ^> ^ AttributeExtensions { System::Collections::Generic::Dictionary<System::Xml::XmlQualifiedName ^, System::String ^> ^ get(); };
public System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName,string> AttributeExtensions { get; }
member this.AttributeExtensions : System.Collections.Generic.Dictionary<System.Xml.XmlQualifiedName, string>
Public ReadOnly Property AttributeExtensions As Dictionary(Of XmlQualifiedName, String)
屬性值
字典,其中包含屬性延伸的集合。
範例
下列程式碼會示範如何將屬性延伸加入至新聞訂閱連結。
SyndicationLink link = new SyndicationLink(new Uri("http://server/link"));
link.AttributeExtensions.Add(new XmlQualifiedName("myAttribute", ""), "someValue");
Dim link As New SyndicationLink(New Uri("http://server/link"))
link.AttributeExtensions.Add(New XmlQualifiedName("myAttribute", ""), "someValue")
備註
AttributeExtensions 可讓您新增自訂屬性至 SyndicationLink。 序列化為 Atom 1.0 時,自訂屬性會在 <link>
項目中出現。 序列化為 RSS 2.0 時,自訂屬性會在 <a10:link>
項目中出現。 您可新增任何有效的 XML 屬性。