SyndicationLink.MediaType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置链接资源的媒体类型。
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
属性值
链接资源的媒体类型。
示例
下面的代码演示如何设置联合链接上的媒体类型。
下面的 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>
属性形式写入。