SyndicationPerson.ElementExtensions 属性

定义

获取 SyndicationPerson 的元素扩展。

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

一个包含元素扩展的 SyndicationElementExtensionCollection

示例

下面的代码演示如何将元素扩展添加到 SyndicationPerson 实例。

SyndicationPerson sp = new SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://Jesper/Aaberg");
sp.ElementExtensions.Add("simpleString", "", "hello, world!");
Dim sp As New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://Jesper/Aaberg")
sp.ElementExtensions.Add("simpleString", "", "hello, world!")

下面的 XML 演示如何将 ElementExtensions 集合序列化为 Atom 1.0。

<author>
  <name>Kim Abercrombie</name>
  <uri>http://Kim/Abercrombie</uri>
  <email>Kim.Abercrombie@contoso.com</email>
  <customPersonElement xmlns="">person element text</customPersonElement>
</author>

下面的 XML 演示如何将 ElementExtensions 集合序列化为 RSS 2.0。

<a10:author>
  <a10:name>Kim Abercrombie</a10:name>
  <a10:uri>http://Kim/Abercrombie</a10:uri>
  <a10:email>Kim.Abercrombie@contoso.com</a10:email>
  <customPersonElement>person element text</customPersonElement>
</a10:author>

注解

联合对象模型允许您将自定义 XML 元素添加到 SyndicationPerson 实例中。 可以添加任何有效的 XML 元素,只要该元素的命名空间与包含的命名空间不同。

序列化为 Atom 1.0 时,会将任何自定义元素以 <author><contributor> 元素中的 XML 元素形式写入。

序列化为 RSS 2.0 时,会将任何自定义元素以 <managingEditor><a10:contributor><a10:author> 元素中的 XML 元素形式写入。

适用于