SyndicationCategory.Scheme 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置类别的架构。
public:
property System::String ^ Scheme { System::String ^ get(); void set(System::String ^ value); };
public string Scheme { get; set; }
member this.Scheme : string with get, set
Public Property Scheme As String
属性值
类别的方案。
示例
下面的 XML 演示如何将 Scheme 属性序列化为 Atom 1.0。
<category customAttribute="value" term="FeedCategory" label="CategoryLabel" scheme="CategoryScheme"/>
下面的 XML 演示如何将 Scheme 属性序列化为 RSS 2.0。
<category customAttribute="value" domain="CategoryScheme">FeedCategory</category>
注解
序列化为 Atom 1.0 时,该 Scheme 属性将写入 scheme
元素的属性 <category>
。
序列化为 RSS 2.0 时,该 Scheme 属性将写入 domain
元素的属性 <category>
。