Método _Type.FindInterfaces (TypeFilter, Object)
Dica
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.
Fornece objetos COM com acesso independente de versão para o método Type.FindInterfaces.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (em mscorlib.dll)
Sintaxe
Type[] FindInterfaces(
TypeFilter filter,
object filterCriteria
)
array<Type^>^ FindInterfaces(
TypeFilter^ filter,
Object^ filterCriteria
)
abstract FindInterfaces :
filter:TypeFilter *
filterCriteria:Object -> Type[]
Function FindInterfaces (
filter As TypeFilter,
filterCriteria As Object
) As Type()
Parâmetros
filter
Type: System.Reflection.TypeFilterO TypeFilter representante que compara as interfaces contra filterCriteria.
filterCriteria
Type: System.ObjectOs critérios de pesquisa que determinam se uma interface deve ser incluída na matriz retornada.
Valor Retornado
Type: System.Type[]
Uma matriz de objetos Type que representa uma lista filtrada das interfaces implementadas ou herdadas pelo Type atual.
-ou-
Uma matriz vazia do tipo Type, se nenhuma interface que corresponde ao filtro está implementada ou herdada pelo Type atual.
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.
O Type.FindInterfaces método retorna uma matriz de Type objetos que representam uma lista filtrada de interfaces implementada ou herdada por atual Type.
Informações de Versão
.NET Framework
Disponível desde 1.1
Confira Também
Interface _Type
Namespace System.Runtime.InteropServices
Retornar ao início