次の方法で共有


PartBuilder.ExportInterfaces メソッド

定義

一致する型でエクスポートする必要があるインターフェイスのセットを指定します。

オーバーロード

ExportInterfaces()

一致する型のすべてのインターフェイスをエクスポートする必要があることを指定します。

ExportInterfaces(Predicate<Type>)

エクスポートする必要があるインターフェイスのセットを一致する型で指定します。

ExportInterfaces(Predicate<Type>, Action<Type,ExportBuilder>)

エクスポートする必要があり、結果のエクスポートに構成情報を提供するインターフェイスのセット一致の型で指定します。

ExportInterfaces()

ソース:
PartBuilder.cs
ソース:
PartBuilder.cs
ソース:
PartBuilder.cs

一致する型のすべてのインターフェイスをエクスポートする必要があることを指定します。

public:
 System::ComponentModel::Composition::Registration::PartBuilder ^ ExportInterfaces();
public System.ComponentModel.Composition.Registration.PartBuilder ExportInterfaces ();
member this.ExportInterfaces : unit -> System.ComponentModel.Composition.Registration.PartBuilder
Public Function ExportInterfaces () As PartBuilder

戻り値

チェーンを許可するための現在のオブジェクト。

適用対象

ExportInterfaces(Predicate<Type>)

ソース:
PartBuilder.cs
ソース:
PartBuilder.cs
ソース:
PartBuilder.cs

エクスポートする必要があるインターフェイスのセットを一致する型で指定します。

public:
 System::ComponentModel::Composition::Registration::PartBuilder ^ ExportInterfaces(Predicate<Type ^> ^ interfaceFilter);
public System.ComponentModel.Composition.Registration.PartBuilder ExportInterfaces (Predicate<Type> interfaceFilter);
member this.ExportInterfaces : Predicate<Type> -> System.ComponentModel.Composition.Registration.PartBuilder
Public Function ExportInterfaces (interfaceFilter As Predicate(Of Type)) As PartBuilder

パラメーター

interfaceFilter
Predicate<Type>

一連のインターフェイスを指定する述語。

戻り値

チェーンを許可するための現在のオブジェクト。

例外

interfaceFilternullです。

注釈

このメソッドは、 オブジェクトまたは オブジェクトをIPartImportsSatisfiedNotificationエクスポートIDisposableしません。

適用対象

ExportInterfaces(Predicate<Type>, Action<Type,ExportBuilder>)

ソース:
PartBuilder.cs
ソース:
PartBuilder.cs
ソース:
PartBuilder.cs

エクスポートする必要があり、結果のエクスポートに構成情報を提供するインターフェイスのセット一致の型で指定します。

public:
 System::ComponentModel::Composition::Registration::PartBuilder ^ ExportInterfaces(Predicate<Type ^> ^ interfaceFilter, Action<Type ^, System::ComponentModel::Composition::Registration::ExportBuilder ^> ^ exportConfiguration);
public System.ComponentModel.Composition.Registration.PartBuilder ExportInterfaces (Predicate<Type> interfaceFilter, Action<Type,System.ComponentModel.Composition.Registration.ExportBuilder> exportConfiguration);
member this.ExportInterfaces : Predicate<Type> * Action<Type, System.ComponentModel.Composition.Registration.ExportBuilder> -> System.ComponentModel.Composition.Registration.PartBuilder
Public Function ExportInterfaces (interfaceFilter As Predicate(Of Type), exportConfiguration As Action(Of Type, ExportBuilder)) As PartBuilder

パラメーター

interfaceFilter
Predicate<Type>

一連のインターフェイスを指定する述語。

exportConfiguration
Action<Type,ExportBuilder>

エクスポートに関する構成情報を格納するオブジェクト。 既定値は null です。

戻り値

チェーンを許可するための現在のオブジェクト。

例外

interfaceFilternullです。

注釈

このメソッドは、 オブジェクトまたは オブジェクトをIPartImportsSatisfiedNotificationエクスポートIDisposableしません。

適用対象