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 любые настраиваемые элементы записываются как элементы XML в элемент <author> или <contributor>.

При сериализации в RSS 2.0 все настраиваемые элементы записываются как элементы XML в элемент <managingEditor>,<a10:contributor> или <a10:author>.

Применяется к