SyndicationPerson.Uri 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 SyndicationPerson 的 URI。
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。
範例
下列程式碼會示範如何設定 SyndicationPerson 執行個體的 URI。
SyndicationPerson sp = new SyndicationPerson();
sp.Uri = "http://Jesper/Aaberg";
Dim sp As New SyndicationPerson()
sp.Uri = "http://Jesper/Aaberg"
下列 XML 顯示 Name 如何序列化為 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>
下列 XML 顯示 Name 如何序列化為 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>
備註
序列化為 Atom 1.0 時,會將 Uri 屬性做為 <uri>
項目寫入。
<uri>
項目可能出現在 <author>
或 <contributor>
項目內,視 SyndicationPerson 新增至哪一個集合 (作者或參與者) 而定。
序列化為 RSS 2.0 時,會將 Uri 屬性做為 <a10:uri>
項目寫入。
<a10:uri>
項目可能會出現在 <managingEditor>
、<a10:author>
或 <a10:contributor>
項目內。 如果只新增一個 SyndicationPerson 至作者集合中,<a10:uri>
項目會寫入至 <managingEditor>
項目中。 如果新增一個以上的 SyndicationPerson 至作者集合中,<a10:uri>
項目會寫入至 <a10:author>
項目中。 如果新增 SyndicationPerson 至參與者集合中,<a10:uri>
項目會寫入至 <a10:contributor>
項目中。