SyndicationCategory.ElementExtensions 属性

定义

获取此类别的元素扩展。

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

元素扩展的集合。

示例

下面的 XML 演示如何将具有自定义元素的 SyndicationCategory 序列化为 Atom 1.0。

<category customAttribute="value" term="FeedCategory" label="CategoryLabel" scheme="CategoryScheme">  
    <customCategoryElement xmlns="">Some text</customCategoryElement>  
</category>  

备注

SyndicationCategory 实例中的自定义元素无法序列化为 RSS 2.0。

注解

元素扩展是 Atom 1.0 或 RSS 2.0 规范中未指定的有效 XML 元素。 可以添加任何有效的 XML 元素作为扩展名,只要该元素的命名空间与外层命名空间不同。

适用于