SyndicationLink.Length 属性

定义

获取或设置链接资源的长度(以字节为单位)。

public:
 property long Length { long get(); void set(long value); };
public long Length { get; set; }
member this.Length : int64 with get, set
Public Property Length As Long

属性值

链接资源的长度。

示例

下面的代码演示如何设置联合链接的长度。

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

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

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

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

注解

当序列化为 Atom 1.0 时,会将 Length 属性 (Property) 以 length 属性写入 <link> 元素。

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

适用于