SyndicationItem.Content 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置联合项的内容。
public:
property System::ServiceModel::Syndication::SyndicationContent ^ Content { System::ServiceModel::Syndication::SyndicationContent ^ get(); void set(System::ServiceModel::Syndication::SyndicationContent ^ value); };
public System.ServiceModel.Syndication.SyndicationContent Content { get; set; }
member this.Content : System.ServiceModel.Syndication.SyndicationContent with get, set
Public Property Content As SyndicationContent
属性值
一个包含联合项内容的 SyndicationContent 实例。
示例
下面的代码演示如何将内容添加到 SyndicationItem。
SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Content = new TextSyndicationContent("This is the content of the syndication item");
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Content = New TextSyndicationContent("This is the content of the syndication item")
下面的 XML 演示如何将 Content 属性序列化为 Atom 1.0。
TextSyndicationContent 的序列化方式如下面的示例所示。
<content type="text">This is some content</content>
UrlSyndicationContent 的序列化方式如下面的示例所示。
<content type="text/html" src="http://myurl/" />
XmlSyndicationContent 的序列化方式如下面的示例所示。
<content type="MyXMLType">
<mg:MyElement xmlns:mg="http://migree/elements">This is some text</mg:MyElement>
</content>
下面的 XML 演示如何将 Content 属性序列化为 RSS 2.0。
TextSyndicationContent 的序列化方式如下面的示例所示。
<description>This is some content</description>
UrlSyndicationContent 的序列化方式如下面的示例所示。
<a10:content type="text/html" src="http://myurl/" />
XmlSyndicationContent 的序列化方式如下面的示例所示。
<a10:content type="MyXMLType">
<mg:MyElement xmlns:mg="http://migree/elements">This is some text</mg:MyElement>
</a10:content>
注解
SyndicationContent 是所有联合内容类型的基类。 .NET Framework 3.5 定义以下联合内容类型:
您可以将此属性分配给上述任一内容类型(也可以分配给从 SyndicationContent 派生的用户定义类型)。
若为 Atom 1.0,Content 属性会序列化为 <content>
元素。
若为 RSS 2.0,Content 属性会序列化为 <description>
的 TextSyndicationContent 元素,以及 <a10:content>
和 UrlSyndicationContent 的 XmlSyndicationContent 元素。