AttributedModelServices.Exports 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Exports(ComposablePartDefinition, Type) |
傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。 |
Exports<T>(ComposablePartDefinition) |
傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。 |
Exports(ComposablePartDefinition, Type)
傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。
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
參數
要搜尋的組件。
- contractType
- Type
合約類型。
傳回
如果part
包含符合contractType
的匯出定義,則為 true
,否則為false
。
適用於
Exports<T>(ComposablePartDefinition)
傳回值,這個值表示指定部分否包含符合指定合約型別的匯出。
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
包含型別T
的匯出定義,則為 true
,否則為false
。