Type::GetInterfaces Method
When overridden in a derived class, gets all the interfaces implemented or inherited by the current Type.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: array<System::Type>An array of Type objects representing all the interfaces implemented or inherited by the current Type.
-or-
An empty array of type Type, if no interfaces are implemented or inherited by the current Type.
| Exception | Condition |
|---|---|
| TargetInvocationException | A static initializer is invoked and throws an exception. |
The GetInterfaces method does not return interfaces in a particular order, such as alphabetical or declaration order. Your code must not depend on the order in which interfaces are returned, because that order varies.
If the current Type represents a constructed generic type, this method returns the Type objects with the type parameters replaced by the appropriate type arguments.
If the current Type represents a type parameter in the definition of a generic type or generic method, this method searches the interface constraints and any interfaces inherited from class or interface constraints.
The following example gets the type of the specified class and displays all the interfaces that the type implements or inherits.
Note: |
|---|
To run this example, see Building Examples That Use a Demo Method and a TextBlock Control. |
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Note: