XsdDataContractExporter.Export 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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>
내보낼 형식을 포함하는 Assembly의 ICollection<T>입니다.
예외
assemblies
인수가 null
인 경우
컬렉션의 Assembly가 null
인 경우
적용 대상
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>
내보낼 형식을 포함하는 Type의 ICollection<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
인수가 null
인 경우
설명
를 CanExport 호출하여 형식을 내보낼 수 있는지 여부를 확인합니다. 메서드를 호출한 Export 후 속성을 통해 Schemas 스키마를 검색할 수 있습니다.
적용 대상
.NET