XsdDataContractExporter.Export 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 Common Language Runtime (CLR) 類型或類型集合轉換成 XML 結構描述集合。
多載
Export(ICollection<Assembly>) |
轉換包含在指定組件集合中的類型。 |
Export(ICollection<Type>) |
轉換已傳遞到這個方法之 ICollection<T> 中所包含的類型。 |
Export(Type) |
將指定的 .NET Framework 類型轉換成 XML 架構定義語言, (XSD) 架構。 |
備註
建議做法是使用其中一個 CanExport 多載來判定是否能夠匯出指定的型別或型別集合。
在呼叫 Export 方法後,從 Schemas 屬性擷取結構描述。
Export(ICollection<Assembly>)
轉換包含在指定組件集合中的類型。
public:
void Export(System::Collections::Generic::ICollection<System::Reflection::Assembly ^> ^ assemblies);
public void Export (System.Collections.Generic.ICollection<System.Reflection.Assembly> assemblies);
member this.Export : System.Collections.Generic.ICollection<System.Reflection.Assembly> -> unit
Public Sub Export (assemblies As ICollection(Of Assembly))
參數
- assemblies
- ICollection<Assembly>
ICollection<T> (屬於 Assembly),其中包含要匯出的類型。
例外狀況
assemblies
引數為 null
。
在集合中的 Assembly 為 null
。
適用於
Export(ICollection<Type>)
轉換已傳遞到這個方法之 ICollection<T> 中所包含的類型。
public:
void Export(System::Collections::Generic::ICollection<Type ^> ^ types);
public void Export (System.Collections.Generic.ICollection<Type> types);
member this.Export : System.Collections.Generic.ICollection<Type> -> unit
Public Sub Export (types As ICollection(Of Type))
參數
- types
- ICollection<Type>
ICollection<T> (屬於 Type),其中包含要匯出的類型。
例外狀況
types
引數為 null
。
在集合中的類型為 null
。