_Type.FindInterfaces(TypeFilter, Object) Método

Definição

Fornece objetos COM com acesso independente de versão para o método FindInterfaces(TypeFilter, Object).Provides COM objects with version-independent access to the FindInterfaces(TypeFilter, Object) method.

public:
 cli::array <Type ^> ^ FindInterfaces(System::Reflection::TypeFilter ^ filter, System::Object ^ filterCriteria);
public Type[] FindInterfaces (System.Reflection.TypeFilter filter, object filterCriteria);
abstract member FindInterfaces : System.Reflection.TypeFilter * obj -> Type[]
Public Function FindInterfaces (filter As TypeFilter, filterCriteria As Object) As Type()

Parâmetros

filter
TypeFilter

O delegado TypeFilter que compara as interfaces com filterCriteria.The TypeFilter delegate that compares the interfaces against filterCriteria.

filterCriteria
Object

Os critérios de pesquisa que determinam se uma interface deve ser incluída na matriz retornada.The search criteria that determines whether an interface should be included in the returned array.

Retornos

Type[]

Uma matriz de objetos Type que representa uma lista filtrada das interfaces implementadas ou herdadas pelo Type atual.An array of Type objects representing a filtered list of the interfaces implemented or inherited by the current Type.

- ou --or- Uma matriz vazia do tipo Type, se nenhuma interface que corresponde ao filtro está implementada ou herdada pelo Type atual.An empty array of type Type, if no interfaces matching the filter are implemented or inherited by the current Type.

Comentários

Este método é para acesso a classes gerenciadas de código não gerenciado e não deve ser chamado em código gerenciado.This method is for access to managed classes from unmanaged code, and should not be called from managed code.

O Type.FindInterfaces método retorna uma matriz de Type objetos que representa uma lista filtrada de interfaces implementadas ou herdadas pelo atual Type .The Type.FindInterfaces method returns an array of Type objects representing a filtered list of interfaces implemented or inherited by the current Type.

Aplica-se a