다음을 통해 공유


TypeCatalog 생성자

정의

TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

오버로드

TypeCatalog(IEnumerable<Type>)

지정한 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

TypeCatalog(Type[])

지정한 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

TypeCatalog(IEnumerable<Type>, ICompositionElement)

지정된 형식 및 파트의 소스를 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

TypeCatalog(IEnumerable<Type>, ReflectionContext)

지정된 리플렉션 컨텍스트 내에서 지정된 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

TypeCatalog(IEnumerable<Type>, ReflectionContext, ICompositionElement)

해당 부분에 대한 소스와 지정된 리플렉션 컨텍스트 내 지정된 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

TypeCatalog(IEnumerable<Type>)

Source:
TypeCatalog.cs
Source:
TypeCatalog.cs
Source:
TypeCatalog.cs

지정한 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

public:
 TypeCatalog(System::Collections::Generic::IEnumerable<Type ^> ^ types);
public TypeCatalog (System.Collections.Generic.IEnumerable<Type> types);
new System.ComponentModel.Composition.Hosting.TypeCatalog : seq<Type> -> System.ComponentModel.Composition.Hosting.TypeCatalog
Public Sub New (types As IEnumerable(Of Type))

매개 변수

types
IEnumerable<Type>

Type 개체에 추가할 특성 사용 TypeCatalog 개체의 컬렉션입니다.

예외

types이(가) null인 경우

typesnull인 요소가 포함된 경우

또는

types에 리플렉션 전용 컨텍스트에서 로드된 요소가 포함된 경우

적용 대상

TypeCatalog(Type[])

Source:
TypeCatalog.cs
Source:
TypeCatalog.cs
Source:
TypeCatalog.cs

지정한 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

public:
 TypeCatalog(... cli::array <Type ^> ^ types);
public TypeCatalog (params Type[] types);
new System.ComponentModel.Composition.Hosting.TypeCatalog : Type[] -> System.ComponentModel.Composition.Hosting.TypeCatalog
Public Sub New (ParamArray types As Type())

매개 변수

types
Type[]

Type 개체에 추가할 특성 사용 TypeCatalog 개체의 배열입니다.

예외

types이(가) null인 경우

typesnull인 요소가 포함된 경우

또는

types에 리플렉션 전용 컨텍스트에서 로드된 요소가 포함된 경우

적용 대상

TypeCatalog(IEnumerable<Type>, ICompositionElement)

Source:
TypeCatalog.cs
Source:
TypeCatalog.cs
Source:
TypeCatalog.cs

지정된 형식 및 파트의 소스를 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

public:
 TypeCatalog(System::Collections::Generic::IEnumerable<Type ^> ^ types, System::ComponentModel::Composition::Primitives::ICompositionElement ^ definitionOrigin);
public TypeCatalog (System.Collections.Generic.IEnumerable<Type> types, System.ComponentModel.Composition.Primitives.ICompositionElement definitionOrigin);
new System.ComponentModel.Composition.Hosting.TypeCatalog : seq<Type> * System.ComponentModel.Composition.Primitives.ICompositionElement -> System.ComponentModel.Composition.Hosting.TypeCatalog
Public Sub New (types As IEnumerable(Of Type), definitionOrigin As ICompositionElement)

매개 변수

types
IEnumerable<Type>

Type 개체에 추가할 특성 사용 TypeCatalog 개체의 컬렉션입니다.

definitionOrigin
ICompositionElement

진단 시 파트의 소스를 식별하는 데 사용되는 요소입니다.

예외

types이(가) null인 경우

typesnull인 요소가 포함된 경우

또는

types에 리플렉션 전용 컨텍스트에서 로드된 요소가 포함된 경우

적용 대상

TypeCatalog(IEnumerable<Type>, ReflectionContext)

Source:
TypeCatalog.cs
Source:
TypeCatalog.cs
Source:
TypeCatalog.cs

지정된 리플렉션 컨텍스트 내에서 지정된 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

public:
 TypeCatalog(System::Collections::Generic::IEnumerable<Type ^> ^ types, System::Reflection::ReflectionContext ^ reflectionContext);
public TypeCatalog (System.Collections.Generic.IEnumerable<Type> types, System.Reflection.ReflectionContext reflectionContext);
new System.ComponentModel.Composition.Hosting.TypeCatalog : seq<Type> * System.Reflection.ReflectionContext -> System.ComponentModel.Composition.Hosting.TypeCatalog
Public Sub New (types As IEnumerable(Of Type), reflectionContext As ReflectionContext)

매개 변수

types
IEnumerable<Type>

Type 개체에 추가할 특성 사용 TypeCatalog 개체의 컬렉션입니다.

reflectionContext
ReflectionContext

형식을 해석하는 데 사용되는 컨텍스트입니다.

예외

types이(가) null인 경우

typesnull인 요소가 포함된 경우

또는

types에 리플렉션 전용 컨텍스트에서 로드된 요소가 포함된 경우

적용 대상

TypeCatalog(IEnumerable<Type>, ReflectionContext, ICompositionElement)

Source:
TypeCatalog.cs
Source:
TypeCatalog.cs
Source:
TypeCatalog.cs

해당 부분에 대한 소스와 지정된 리플렉션 컨텍스트 내 지정된 형식을 사용하여 TypeCatalog 클래스의 새 인스턴스를 초기화합니다.

public:
 TypeCatalog(System::Collections::Generic::IEnumerable<Type ^> ^ types, System::Reflection::ReflectionContext ^ reflectionContext, System::ComponentModel::Composition::Primitives::ICompositionElement ^ definitionOrigin);
public TypeCatalog (System.Collections.Generic.IEnumerable<Type> types, System.Reflection.ReflectionContext reflectionContext, System.ComponentModel.Composition.Primitives.ICompositionElement definitionOrigin);
new System.ComponentModel.Composition.Hosting.TypeCatalog : seq<Type> * System.Reflection.ReflectionContext * System.ComponentModel.Composition.Primitives.ICompositionElement -> System.ComponentModel.Composition.Hosting.TypeCatalog
Public Sub New (types As IEnumerable(Of Type), reflectionContext As ReflectionContext, definitionOrigin As ICompositionElement)

매개 변수

types
IEnumerable<Type>

Type 개체에 추가할 특성 사용 TypeCatalog 개체의 컬렉션입니다.

reflectionContext
ReflectionContext

형식을 해석하는 데 사용되는 컨텍스트입니다.

definitionOrigin
ICompositionElement

진단 시 파트의 소스를 식별하는 데 사용되는 요소입니다.

예외

types이(가) null인 경우

typesnull인 요소가 포함된 경우

또는

types에 리플렉션 전용 컨텍스트에서 로드된 요소가 포함된 경우

적용 대상