SyndicationCategory 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 SyndicationCategory 類別的新實例。
多載
SyndicationCategory() |
初始化 SyndicationCategory 類別的新實例。 |
SyndicationCategory(SyndicationCategory) |
使用指定的 SyndicationCategory 實例,初始化 SyndicationCategory 類別的新實例。 |
SyndicationCategory(String) |
使用指定的名稱,初始化 SyndicationCategory 類別的新實例。 |
SyndicationCategory(String, String, String) |
使用指定的名稱、配置和標籤,初始化 SyndicationCategory 類別的新實例。 |
SyndicationCategory()
初始化 SyndicationCategory 類別的新實例。
public:
SyndicationCategory();
public SyndicationCategory ();
Public Sub New ()
適用於
SyndicationCategory(SyndicationCategory)
使用指定的 SyndicationCategory 實例,初始化 SyndicationCategory 類別的新實例。
protected:
SyndicationCategory(System::ServiceModel::Syndication::SyndicationCategory ^ source);
protected SyndicationCategory (System.ServiceModel.Syndication.SyndicationCategory source);
new System.ServiceModel.Syndication.SyndicationCategory : System.ServiceModel.Syndication.SyndicationCategory -> System.ServiceModel.Syndication.SyndicationCategory
Protected Sub New (source As SyndicationCategory)
參數
- source
- SyndicationCategory
要初始化新 SyndicationCategory 實例的 SyndicationCategory 實例。
適用於
SyndicationCategory(String)
使用指定的名稱,初始化 SyndicationCategory 類別的新實例。
public:
SyndicationCategory(System::String ^ name);
public SyndicationCategory (string name);
new System.ServiceModel.Syndication.SyndicationCategory : string -> System.ServiceModel.Syndication.SyndicationCategory
Public Sub New (name As String)
參數
- name
- String
類別的名稱。
範例
下列程式代碼示範如何建立 SyndicationFeed,並使用 SyndicationCategory新增 SyndicationItem。
using System;
using System.ServiceModel.Syndication;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace SyndicationCategorySample
{
class Program
{
static void Main(string[] args)
{
SyndicationFeed myFeed = new SyndicationFeed("My Test Feed",
"This is a test feed",
new Uri("http://FeedServer/Test"), "MyFeedId", DateTime.Now);
SyndicationItem myItem = new SyndicationItem("Item One Title",
"Item One Content",
new Uri("http://FeedServer/Test/ItemOne"));
myItem.Categories.Add(new SyndicationCategory("MyCategory"));
Collection<SyndicationItem> items = new Collection<SyndicationItem>();
items.Add(myItem);
myFeed.Items = items;
}
}
}
Imports System.ServiceModel.Syndication
Imports System.Collections.Generic
imports System.Collections.ObjectModel
Module Program
Sub Main()
Dim myFeed As New SyndicationFeed("My Test Feed", _
"This is a test feed", _
New Uri("http://FeedServer/Test"), "MyFeedId", DateTime.Now)
Dim myItem As New SyndicationItem("Item One Title", _
"Item One Content", _
New Uri("http://FeedServer/Test/ItemOne"))
myItem.Categories.Add(New SyndicationCategory("MyCategory"))
Dim items As New Collection(Of SyndicationItem)()
items.Add(myItem)
myFeed.Items = items
End Sub
End Module
適用於
SyndicationCategory(String, String, String)
使用指定的名稱、配置和標籤,初始化 SyndicationCategory 類別的新實例。
public:
SyndicationCategory(System::String ^ name, System::String ^ scheme, System::String ^ label);
public SyndicationCategory (string name, string scheme, string label);
new System.ServiceModel.Syndication.SyndicationCategory : string * string * string -> System.ServiceModel.Syndication.SyndicationCategory
Public Sub New (name As String, scheme As String, label As String)
參數
- name
- String
類別的名稱。
- scheme
- String
統一資源識別元 (URI),表示此類別所屬的分類配置。
- label
- String
描述類別的人類可讀取屬性。
範例
下列程式代碼示範如何呼叫這個建構函式。
SyndicationCategory category = new SyndicationCategory("MyCategory", "http://contoso/MyCategory", "Contoso Category");
Dim category As New SyndicationCategory("MyCategory", "http://contoso/MyCategory", "Contoso Category")