Export 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Export 클래스의 새 인스턴스를 초기화합니다.
오버로드
Export() |
Export 클래스의 새 인스턴스를 초기화합니다. |
Export(ExportDefinition, Func<Object>) |
지정된 내보내기 정의와 내보낸 개체 getter를 사용하여 Export 클래스의 새 인스턴스를 초기화합니다. |
Export(String, Func<Object>) |
지정된 계약 이름과 내보낸 값 getter를 사용하여 Export 클래스의 새 인스턴스를 초기화합니다. |
Export(String, IDictionary<String,Object>, Func<Object>) |
지정된 계약 이름, 메타데이터 및 내보낸 값 getter를 사용하여 Export 클래스의 새 인스턴스를 초기화합니다. |
Export()
- Source:
- Export.cs
- Source:
- Export.cs
- Source:
- Export.cs
Export 클래스의 새 인스턴스를 초기화합니다.
protected:
Export();
protected Export ();
Protected Sub New ()
설명
이 생성자를 호출 하는 파생된 형식의 재정의 해야 합니다 Definition 속성 및 GetExportedValueCore 메서드.
적용 대상
Export(ExportDefinition, Func<Object>)
- Source:
- Export.cs
- Source:
- Export.cs
- Source:
- Export.cs
지정된 내보내기 정의와 내보낸 개체 getter를 사용하여 Export 클래스의 새 인스턴스를 초기화합니다.
public:
Export(System::ComponentModel::Composition::Primitives::ExportDefinition ^ definition, Func<System::Object ^> ^ exportedValueGetter);
public Export (System.ComponentModel.Composition.Primitives.ExportDefinition definition, Func<object> exportedValueGetter);
public Export (System.ComponentModel.Composition.Primitives.ExportDefinition definition, Func<object?> exportedValueGetter);
new System.ComponentModel.Composition.Primitives.Export : System.ComponentModel.Composition.Primitives.ExportDefinition * Func<obj> -> System.ComponentModel.Composition.Primitives.Export
Public Sub New (definition As ExportDefinition, exportedValueGetter As Func(Of Object))
매개 변수
- definition
- ExportDefinition
Export 개체가 충족하는 계약을 설명하는 개체입니다.
예외
적용 대상
Export(String, Func<Object>)
- Source:
- Export.cs
- Source:
- Export.cs
- Source:
- Export.cs
지정된 계약 이름과 내보낸 값 getter를 사용하여 Export 클래스의 새 인스턴스를 초기화합니다.
public:
Export(System::String ^ contractName, Func<System::Object ^> ^ exportedValueGetter);
public Export (string contractName, Func<object> exportedValueGetter);
public Export (string contractName, Func<object?> exportedValueGetter);
new System.ComponentModel.Composition.Primitives.Export : string * Func<obj> -> System.ComponentModel.Composition.Primitives.Export
Public Sub New (contractName As String, exportedValueGetter As Func(Of Object))
매개 변수
예외
contractName
가 빈 문자열("")인 경우
적용 대상
Export(String, IDictionary<String,Object>, Func<Object>)
- Source:
- Export.cs
- Source:
- Export.cs
- Source:
- Export.cs
지정된 계약 이름, 메타데이터 및 내보낸 값 getter를 사용하여 Export 클래스의 새 인스턴스를 초기화합니다.
public:
Export(System::String ^ contractName, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ metadata, Func<System::Object ^> ^ exportedValueGetter);
public Export (string contractName, System.Collections.Generic.IDictionary<string,object> metadata, Func<object> exportedValueGetter);
public Export (string contractName, System.Collections.Generic.IDictionary<string,object?>? metadata, Func<object?> exportedValueGetter);
new System.ComponentModel.Composition.Primitives.Export : string * System.Collections.Generic.IDictionary<string, obj> * Func<obj> -> System.ComponentModel.Composition.Primitives.Export
Public Sub New (contractName As String, metadata As IDictionary(Of String, Object), exportedValueGetter As Func(Of Object))
매개 변수
- metadata
- IDictionary<String,Object>
Export 개체의 메타데이터이거나, Metadata 속성을 빈 읽기 전용 IDictionary<TKey,TValue> 개체로 설정하려는 경우 null
입니다.
예외
contractName
가 빈 문자열("")인 경우
적용 대상
.NET