Returns a Type object representing a specified interface implemented by the current class.
[Visual Basic] Overrides Public Function GetInterface( _ ByVal name As String, _ ByVal ignoreCase As Boolean _ ) As Type [C#] public override Type GetInterface( string name, bool ignoreCase ); [C++] public: override Type* GetInterface( String* name, bool ignoreCase ); [JScript] public override function GetInterface( name : String, ignoreCase : Boolean ) : Type;
A Type object representing the interface implemented (directly or indirectly) by the current class with the fully qualified name matching the specified name. If no interface that matches name is found, null is returned.
To be supplied
TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace