UrlSyndicationContent 类

定义

表示由其他资源 URL 组成的联合内容。

public ref class UrlSyndicationContent : System::ServiceModel::Syndication::SyndicationContent
public class UrlSyndicationContent : System.ServiceModel.Syndication.SyndicationContent
type UrlSyndicationContent = class
    inherit SyndicationContent
Public Class UrlSyndicationContent
Inherits SyndicationContent
继承
UrlSyndicationContent

示例

下面的示例演示如何使用 UrlSyndicationContent 类。

UrlSyndicationContent urlContent = new UrlSyndicationContent(new Uri("http://localhost/content"), "text/html");
Dim urlContent As UrlSyndicationContent = New UrlSyndicationContent(New Uri("http://localhost/content"), "text/html")

构造函数

UrlSyndicationContent(Uri, String)

使用指定的 UrlSyndicationContent 和媒体类型初始化 Uri 类的新实例。

UrlSyndicationContent(UrlSyndicationContent)

使用指定的 UrlSyndicationContent 实例初始化 UrlSyndicationContent 类的新实例。

属性

AttributeExtensions

获取此内容的属性扩展。

(继承自 SyndicationContent)
Type

获取 UrlSyndicationContent 的内容类型。

Url

获取 UriUrlSyndicationContent

方法

Clone()

创建现有 UrlSyndicationContent 实例的副本。

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)
WriteContentsTo(XmlWriter)

UrlSyndicationContent 实例内容写入指定的 XmlWriter

WriteTo(XmlWriter, String, String)

在指定的元素和元素命名空间中,将此对象的内容写入指定的 XmlWriter

(继承自 SyndicationContent)

适用于