SyndicationPerson.Name Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le nom de l'objet 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
Valeur de propriété
Nom de la personne.
Exemples
Le code suivant illustre la définition du nom d'un objet SyndicationPerson :
SyndicationPerson sp = new SyndicationPerson();
sp.Name = "Jesper Aaberg";
Dim sp As New SyndicationPerson()
sp.Name = "Jesper Aaberg"
Le code XML suivant montre comment Name est sérialisé pour Atom 1.0.
<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>
Le code XML suivant montre comment Name est sérialisé pour 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>
Remarques
En cas de sérialisation en Atom 1.0, la propriété Name est écrite sous la forme d'un élément <name>
. L'élément <name>
apparaît dans un élément <author>
ou <contributor>
dépendant de la collection (d'auteurs ou de collaborateurs) à laquelle SyndicationPerson est ajouté.
En cas de sérialisation en RSS 2.0, la propriété Name est écrite sous forme d'élément <a10:name>
. L'élément <a10:name>
apparaît dans un élément <managingEditor>
, <a10:author>
ou <a10:contributor>
. Si un seul SyndicationPerson est ajouté à la collection d’auteurs, l’élément <a10:name>
est écrit dans l’élément <managingEditor>
. Si plusieurs SyndicationPerson sont ajoutés à la collection d'auteurs, l'élément <a10:name>
est écrit dans l'élément <a10:author>
. Si SyndicationPerson est ajouté à la collection de collaborateurs, l'élément <a10:name>
est écrit dans l'élément <a10:contributor>
.