SyndicationLink.MediaType 属性

定义

获取或设置链接资源的媒体类型。

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

属性值

String

链接资源的媒体类型。

示例

下面的代码演示如何设置联合链接上的媒体类型。

下面的 XML 演示如何将 MediaType 属性序列化为 Atom 1.0。

<link customAttribute="value" rel="alternate" type="text/html" title="Link Title" length="1000" href="http://server/link" />

下面的 XML 演示如何将 MediaType 属性序列化为 RSS 2.0。

<a10:link customAttribute="value" rel="alternate" type="text/html" title="Link Title" length="1000" href="http://server/link" />

注解

序列化为 Atom 1.0 时,会将此值以 type 元素中的 <link> 属性形式写入。 序列化为 RSS 2.0 时,会将此值以 type 元素中的 <a10:link> 属性形式写入。

适用于