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>
元素中。