SyndicationPerson.Uri Propriété
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 l’URI de SyndicationPerson.
public:
property System::String ^ Uri { System::String ^ get(); void set(System::String ^ value); };
public string Uri { get; set; }
member this.Uri : string with get, set
Public Property Uri As String
URI du site web de la personne.
Le code suivant illustre la définition de l'URI d'une instance SyndicationPerson.
SyndicationPerson sp = new SyndicationPerson();
sp.Uri = "http://Jesper/Aaberg";
Dim sp As New SyndicationPerson()
sp.Uri = "http://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>
En cas de sérialisation en Atom 1.0, la propriété Uri est écrite sous la forme d'un élément <uri>
. L'élément <uri>
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é Uri est écrite sous forme d'élément <a10:uri>
. L'élément <a10:uri>
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:uri>
est écrit dans l’élément <managingEditor>
. Si plusieurs SyndicationPerson sont ajoutés à la collection d'auteurs, l'élément <a10:uri>
est écrit dans l'élément <a10:author>
. Si SyndicationPerson est ajouté à la collection de collaborateurs, l'élément <a10:uri>
est écrit dans l'élément <a10:contributor>
.
Produit | Versions |
---|---|
.NET | 8 (package-provided), 9 (package-provided) |
.NET Framework | 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1 |
.NET Standard | 2.0 (package-provided) |
Commentaires sur .NET
.NET est un projet open source. Sélectionnez un lien pour fournir des commentaires :