Gets a specific interface implemented or inherited by the current Type.
When implemented by a derived class, searches for the specified interface, specifying case-sensitivity.
[Visual Basic] Overloads MustOverride Public Function GetInterface(String, Boolean) As Type
[C#] public abstract Type GetInterface(String, bool);
[C++] public: virtual Type* GetInterface(String*, bool) = 0;
[JScript] public abstract function GetInterface(String, Boolean) : Type;
Searches for the interface with the specified name.
[Visual Basic] Overloads Public Function GetInterface(String) As Type
[C#] public Type GetInterface(String);
[C++] public: Type* GetInterface(String*);
[JScript] public function GetInterface(String) : Type;