다음을 통해 공유


XsdDataContractExporter.Export 메서드

정의

CLR(공용 언어 런타임) 형식 또는 형식 집합을 XML 스키마 집합으로 변환합니다.

오버로드

Export(ICollection<Assembly>)

지정한 어셈블리 컬렉션에 포함된 형식을 변환합니다.

Export(ICollection<Type>)

이 메서드에 전달되는 ICollection<T>에 포함된 형식을 변환합니다.

Export(Type)

지정된 .NET Framework 형식을 XSD(XML 스키마 정의 언어) 스키마로 변환합니다.

설명

권장되는 방법은 오버로드 중 CanExport 하나를 사용하여 지정된 형식 또는 형식 집합을 내보낼 수 있는지 여부를 결정합니다.

메서드를 호출한 Export 후 속성에서 스키마를 Schemas 검색합니다.

Export(ICollection<Assembly>)

Source:
XsdDataContractExporter.cs
Source:
XsdDataContractExporter.cs
Source:
XsdDataContractExporter.cs

지정한 어셈블리 컬렉션에 포함된 형식을 변환합니다.

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>

내보낼 형식을 포함하는 AssemblyICollection<T>입니다.

예외

assemblies 인수가 null인 경우

컬렉션의 Assemblynull인 경우

적용 대상

Export(ICollection<Type>)

Source:
XsdDataContractExporter.cs
Source:
XsdDataContractExporter.cs
Source:
XsdDataContractExporter.cs

이 메서드에 전달되는 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>

내보낼 형식을 포함하는 TypeICollection<T>입니다.

예외

types 인수가 null인 경우

컬렉션에 있는 형식이 null인 경우

적용 대상

Export(Type)

Source:
XsdDataContractExporter.cs
Source:
XsdDataContractExporter.cs
Source:
XsdDataContractExporter.cs

지정된 .NET Framework 형식을 XSD(XML 스키마 정의 언어) 스키마로 변환합니다.

public:
 void Export(Type ^ type);
public void Export (Type type);
member this.Export : Type -> unit
Public Sub Export (type As Type)

매개 변수

type
Type

XML 스키마로 변환할 Type입니다.

예외

type 인수가 null인 경우

설명

CanExport 호출하여 형식을 내보낼 수 있는지 여부를 확인합니다. 메서드를 호출한 Export 후 속성을 통해 Schemas 스키마를 검색할 수 있습니다.

적용 대상