次の方法で共有


Export コンストラクター

定義

Export クラスの新しいインスタンスを初期化します。

オーバーロード

Export()

Export クラスの新しいインスタンスを初期化します。

Export(ExportDefinition, Func<Object>)

エクスポート定義およびエクスポート オブジェクトの取得メソッドを指定して、Export クラスの新しいインスタンスを初期化します。

Export(String, Func<Object>)

コントラクト名およびエクスポート値の取得メソッドを指定して、Export クラスの新しいインスタンスを初期化します。

Export(String, IDictionary<String,Object>, Func<Object>)

コントラクト名、メタデータ、およびエクスポート値の取得メソッドを指定して、Export クラスの新しいインスタンスを初期化します。

Export()

ソース:
Export.cs
ソース:
Export.cs
ソース:
Export.cs

Export クラスの新しいインスタンスを初期化します。

protected:
 Export();
protected Export ();
Protected Sub New ()

注釈

このコンストラクターを呼び出す派生型は、 プロパティと メソッドを Definition オーバーライドする GetExportedValueCore 必要があります。

適用対象

Export(ExportDefinition, Func<Object>)

ソース:
Export.cs
ソース:
Export.cs
ソース:
Export.cs

エクスポート定義およびエクスポート オブジェクトの取得メソッドを指定して、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 オブジェクトが満たすコントラクトを記述するオブジェクト。

exportedValueGetter
Func<Object>

Export のエクスポート オブジェクトを作成するために呼び出されるメソッド。 オブジェクトの作成は、Value プロパティが呼び出されるまで遅延されます。

例外

definitionnullです。

または

exportedObjectGetternull です。

適用対象

Export(String, Func<Object>)

ソース:
Export.cs
ソース:
Export.cs
ソース:
Export.cs

コントラクト名およびエクスポート値の取得メソッドを指定して、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
String

Export オブジェクトのコントラクト名。

exportedValueGetter
Func<Object>

Export のエクスポート オブジェクトを作成するために呼び出されるメソッド。 オブジェクトの作成は、Value メソッドが呼び出されるまで遅延されます。

例外

contractNamenullです。

または

exportedObjectGetternullです。

contractName が空の文字列 ("") です。

適用対象

Export(String, IDictionary<String,Object>, Func<Object>)

ソース:
Export.cs
ソース:
Export.cs
ソース:
Export.cs

コントラクト名、メタデータ、およびエクスポート値の取得メソッドを指定して、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))

パラメーター

contractName
String

Export オブジェクトのコントラクト名。

metadata
IDictionary<String,Object>

Export オブジェクトのメタデータ。Metadata プロパティを読み取り専用の空の IDictionary<TKey,TValue> オブジェクトに設定する場合は null

exportedValueGetter
Func<Object>

Export のエクスポート オブジェクトを作成するために呼び出されるメソッド。 オブジェクトの作成は、Value メソッドが呼び出されるまで遅延されます。

例外

contractNamenullです。

または

exportedObjectGetternullです。

contractName が空の文字列 ("") です。

適用対象