Partager via


RegistrationBuilder.ForTypesMatching Méthode

Définition

Surcharges

ForTypesMatching(Predicate<Type>)

Obtient un objet qui représente une règle applicable à tous les types qui correspondent au prédicat spécifié.

ForTypesMatching<T>(Predicate<Type>)

Obtient un objet fortement typé qui représente une règle applicable à tous les types qui correspondent au prédicat spécifié.

ForTypesMatching(Predicate<Type>)

Source:
RegistrationBuilder.cs
Source:
RegistrationBuilder.cs
Source:
RegistrationBuilder.cs

Obtient un objet qui représente une règle applicable à tous les types qui correspondent au prédicat spécifié.

public:
 System::ComponentModel::Composition::Registration::PartBuilder ^ ForTypesMatching(Predicate<Type ^> ^ typeFilter);
public System.ComponentModel.Composition.Registration.PartBuilder ForTypesMatching (Predicate<Type> typeFilter);
member this.ForTypesMatching : Predicate<Type> -> System.ComponentModel.Composition.Registration.PartBuilder
Public Function ForTypesMatching (typeFilter As Predicate(Of Type)) As PartBuilder

Paramètres

typeFilter
Predicate<Type>

Prédicat à faire correspondre.

Retours

Objet qui représente la règle.

S’applique à

ForTypesMatching<T>(Predicate<Type>)

Source:
RegistrationBuilder.cs
Source:
RegistrationBuilder.cs
Source:
RegistrationBuilder.cs

Obtient un objet fortement typé qui représente une règle applicable à tous les types qui correspondent au prédicat spécifié.

public:
generic <typename T>
 System::ComponentModel::Composition::Registration::PartBuilder<T> ^ ForTypesMatching(Predicate<Type ^> ^ typeFilter);
public System.ComponentModel.Composition.Registration.PartBuilder<T> ForTypesMatching<T> (Predicate<Type> typeFilter);
member this.ForTypesMatching : Predicate<Type> -> System.ComponentModel.Composition.Registration.PartBuilder<'T>
Public Function ForTypesMatching(Of T) (typeFilter As Predicate(Of Type)) As PartBuilder(Of T)

Paramètres de type

T

Type d'objet PartBuilder<T> à retourner.

Paramètres

typeFilter
Predicate<Type>

Prédicat à faire correspondre.

Retours

Objet fortement typé qui représente la règle.

S’applique à