MetadataSection 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 MetadataSection 類別的新執行個體。
多載
MetadataSection() |
在不使用方言、識別碼或 XML 中繼資料的情況下,初始化 MetadataSection 類別的新執行個體。 |
MetadataSection(String, String, Object) |
使用指定的方言、識別碼和 XML 中繼資料,初始化 MetadataSection 類別的新執行個體。 |
MetadataSection()
在不使用方言、識別碼或 XML 中繼資料的情況下,初始化 MetadataSection 類別的新執行個體。
public:
MetadataSection();
public MetadataSection ();
Public Sub New ()
適用於
MetadataSection(String, String, Object)
使用指定的方言、識別碼和 XML 中繼資料,初始化 MetadataSection 類別的新執行個體。
public:
MetadataSection(System::String ^ dialect, System::String ^ identifier, System::Object ^ metadata);
public MetadataSection (string dialect, string identifier, object metadata);
new System.ServiceModel.Description.MetadataSection : string * string * obj -> System.ServiceModel.Description.MetadataSection
Public Sub New (dialect As String, identifier As String, metadata As Object)
參數
- dialect
- String
中繼資料的方言。
- identifier
- String
中繼資料的識別碼。
- metadata
- Object
XML 中繼資料。
備註
使用 MetadataSection 建構函式,即可指定要包含在這個 MetadataSection 的中繼資料,以及其方言和識別碼。 此中繼資料物件必須可使用 XmlSerializer 類別來序列化,如此 MetadataSection 物件才可以序列化。 如果此中繼資料物件無法序列化,當該物件在序列化時便會擲回例外狀況。 如果要包含中繼資料的參考而非中繼資料本身,MetadataLocation 參數就要使用 MetadataReference 或 metadata
物件。