共用方式為


AttributedModelServices.Exports 方法

定義

多載

Exports(ComposablePartDefinition, Type)

傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。

Exports<T>(ComposablePartDefinition)

傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。

Exports(ComposablePartDefinition, Type)

來源:
AttributedModelServices.cs
來源:
AttributedModelServices.cs
來源:
AttributedModelServices.cs

傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。

public:
[System::Runtime::CompilerServices::Extension]
 static bool Exports(System::ComponentModel::Composition::Primitives::ComposablePartDefinition ^ part, Type ^ contractType);
public static bool Exports (this System.ComponentModel.Composition.Primitives.ComposablePartDefinition part, Type contractType);
static member Exports : System.ComponentModel.Composition.Primitives.ComposablePartDefinition * Type -> bool
<Extension()>
Public Function Exports (part As ComposablePartDefinition, contractType As Type) As Boolean

參數

part
ComposablePartDefinition

要搜尋的組件。

contractType
Type

合約類型。

傳回

如果part包含符合contractType的匯出定義,則為 true,否則為false

適用於

Exports<T>(ComposablePartDefinition)

來源:
AttributedModelServices.cs
來源:
AttributedModelServices.cs
來源:
AttributedModelServices.cs

傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static bool Exports(System::ComponentModel::Composition::Primitives::ComposablePartDefinition ^ part);
public static bool Exports<T> (this System.ComponentModel.Composition.Primitives.ComposablePartDefinition part);
static member Exports : System.ComponentModel.Composition.Primitives.ComposablePartDefinition -> bool
<Extension()>
Public Function Exports(Of T) (part As ComposablePartDefinition) As Boolean

類型參數

T

合約類型。

參數

part
ComposablePartDefinition

要搜尋的組件。

傳回

如果part包含型別T的匯出定義,則為 true,否則為false

適用於