ScopingExtensions.ContainsPartMetadata<T> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出指定的組件是否包含具有指定之索引鍵和值的中繼資料。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static bool ContainsPartMetadata(System::ComponentModel::Composition::Primitives::ComposablePartDefinition ^ part, System::String ^ key, T value);
public static bool ContainsPartMetadata<T> (this System.ComponentModel.Composition.Primitives.ComposablePartDefinition part, string key, T value);
static member ContainsPartMetadata : System.ComponentModel.Composition.Primitives.ComposablePartDefinition * string * 'T -> bool
<Extension()>
Public Function ContainsPartMetadata(Of T) (part As ComposablePartDefinition, key As String, value As T) As Boolean
類型參數
- T
中繼資料值的型別。
參數
要搜尋的組件。
- key
- String
中繼資料金鑰。
- value
- T
中繼資料值。
傳回
如果 part
包含具有指定的索引鍵、實值型別和值的中繼資料,則為 true
,否則為 false
。