UtilReflectionGetAllInterfaces(Type) Method
Gets all the interfaces implemented or inherited by the specified Type.
Namespace: DevCase.Core.Diagnostics.Assembly.ReflectionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static Type[] GetAllInterfaces(
Type type
)
Public Shared Function GetAllInterfaces (
type As Type
) As Type()
Dim type As Type
Dim returnValue As Type()
returnValue = UtilReflection.GetAllInterfaces(type)
public:
static array<Type^>^ GetAllInterfaces(
Type^ type
)
static member GetAllInterfaces :
type : Type -> Type[]
No code example is currently available or this language may not be supported.
- type Type
-
The source type from which to retrieve the interfaces.
Type
All the found interfaces implemented or inherited by the specified
Type.
This is a code example.
No code example is currently available or this language may not be supported.
Dim interfaces As Type() = GetAllInterfaces(GetType(Form)).OrderBy(Function(type As Type) type.FullName).ToArray()
For Each [interface] As Type In interfaces
Console.WriteLine([interface].FullName)
Next [interface]
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.