ScopingExtensions.ContainsPartMetadata<T> Method

Definition

Gets a value that indicates whether the specified part contains metadata that has the specified key and value.

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

Type Parameters

T

The type of the metadata value.

Parameters

part
ComposablePartDefinition

The part to search.

key
String

The metadata key.

value
T

The metadata value.

Returns

true if part contains metadata that has the specified key, value type, and value; otherwise, false.

Applies to