Udostępnij za pośrednictwem


SyndicationPerson.Name Właściwość

Definicja

Pobiera lub ustawia nazwę elementu SyndicationPerson.

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String

Wartość właściwości

String

Imię osoby.

Przykłady

Poniższy kod pokazuje, jak ustawić nazwę elementu SyndicationPerson.

SyndicationPerson sp = new SyndicationPerson();
sp.Name = "Jesper Aaberg";
Dim sp As New SyndicationPerson()
sp.Name = "Jesper Aaberg"

Poniższy kod XML pokazuje, w jaki sposób Name program Atom 1.0 jest serializowany.

<author>
  <name>Jesper Aaberg</name>
  <uri>http://Jesper/Aaberg</uri>
  <email>Jesper.Aaberg@contoso.com</email>
</author>
<contributor>
  <name>Lene Aalling</name>
  <uri>http://Lene/Aaling</uri>
  <email>Lene.Aaling@contoso.com</email>
</contributor>

Poniższy kod XML pokazuje, jak Name serializowana jest funkcja RSS 2.0.

<a10:author>
  <a10:name>Lene Aalling</a10:name>
  <a10:uri>http://Lene/Aalling</a10:uri>
  <a10:email>Lene.Aalling@contoso.com</a10:email>
</a10:author>
  <a10:contributor>
  <a10:name>Jesper Aaberg</a10:name>
  <a10:uri>http://Jesper/Aaberg</a10:uri>
  <a10:email>Jesper.Aaberg@contoso.com</a10:email>
</a10:contributor>

Uwagi

Po serializacji do atomu 1.0 Name właściwość jest zapisywana jako <name> element. Element <name> jest wyświetlany w elemecie <author> lub <contributor> , który zależy od kolekcji (autorów lub współautorów) dodawanej SyndicationPerson do.

Po serializacji do rss 2.0 Name właściwość jest zapisywana jako <a10:name> element. Element <a10:name> jest wyświetlany w elemecie <managingEditor>, <a10:author>lub <a10:contributor> . Jeśli tylko jeden SyndicationPerson zostanie dodany do kolekcji autorów, <a10:name> element jest zapisywany w elemecie <managingEditor> . Jeśli do kolekcji autorów zostanie dodanych więcej niż jeden SyndicationPerson , <a10:name> element zostanie napisany w elemecie <a10:author> . Jeśli element SyndicationPerson zostanie dodany do kolekcji współautorów, <a10:name> element zostanie zapisany w elemecie <a10:contributor> .

Dotyczy