CompositionContext.GetExports メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetExports(Type) |
指定した型に一致するすべてのエクスポートから成るコレクションを取得します。 |
GetExports(Type, String) |
指定されたコントラクト名と型と一致するすべてのエクスポートを取得します。 |
GetExports<TExport>() |
指定されたジェネリック型パラメーターに一致するすべてのエクスポートを取得します。 |
GetExports<TExport>(String) |
指定されたジェネリック型パラメーターとコントラクト名に一致するすべてのエクスポートを取得します。 |
GetExports(Type)
指定した型に一致するすべてのエクスポートから成るコレクションを取得します。
public:
System::Collections::Generic::IEnumerable<System::Object ^> ^ GetExports(Type ^ exportType);
public System.Collections.Generic.IEnumerable<object> GetExports (Type exportType);
member this.GetExports : Type -> seq<obj>
Public Function GetExports (exportType As Type) As IEnumerable(Of Object)
パラメーター
- exportType
- Type
照合する型。
戻り値
エクスポートされた値のコレクション。
例外
exportType
に対するエクスポートが見つかりませんでした。
適用対象
GetExports(Type, String)
指定されたコントラクト名と型と一致するすべてのエクスポートを取得します。
public:
System::Collections::Generic::IEnumerable<System::Object ^> ^ GetExports(Type ^ exportType, System::String ^ contractName);
public System.Collections.Generic.IEnumerable<object> GetExports (Type exportType, string contractName);
member this.GetExports : Type * string -> seq<obj>
Public Function GetExports (exportType As Type, contractName As String) As IEnumerable(Of Object)
パラメーター
- exportType
- Type
照合する型。
- contractName
- String
対応させる名前です。
戻り値
エクスポートされた値のコレクション。
例外
exportType
に対するエクスポートが見つかりませんでした。
適用対象
GetExports<TExport>()
指定されたジェネリック型パラメーターに一致するすべてのエクスポートを取得します。
public:
generic <typename TExport>
System::Collections::Generic::IEnumerable<TExport> ^ GetExports();
public System.Collections.Generic.IEnumerable<TExport> GetExports<TExport> ();
member this.GetExports : unit -> seq<'Export>
Public Function GetExports(Of TExport) () As IEnumerable(Of TExport)
型パラメーター
- TExport
照合する型。
戻り値
エクスポートされた値のコレクション。
例外
TExport
に対するエクスポートが見つかりませんでした。
適用対象
GetExports<TExport>(String)
指定されたジェネリック型パラメーターとコントラクト名に一致するすべてのエクスポートを取得します。
public:
generic <typename TExport>
System::Collections::Generic::IEnumerable<TExport> ^ GetExports(System::String ^ contractName);
public System.Collections.Generic.IEnumerable<TExport> GetExports<TExport> (string contractName);
member this.GetExports : string -> seq<'Export>
Public Function GetExports(Of TExport) (contractName As String) As IEnumerable(Of TExport)
型パラメーター
- TExport
照合する型。
パラメーター
- contractName
- String
対応させる名前です。
戻り値
エクスポートされた値のコレクション。
例外
TExport
および contractName
に対するエクスポートが見つかりませんでした。
適用対象
.NET