Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TypeDelegator::GetInterface Method (String^, Boolean)

 

Returns the specified interface implemented by the type wrapped by the current TypeDelegator.

Namespace:   System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual Type^ GetInterface(
	String^ name,
	bool ignoreCase
) override

Parameters

name
Type: System::String^

The fully qualified name of the interface implemented by the current class.

ignoreCase
Type: System::Boolean

true if the case is to be ignored; otherwise, false.

Return Value

Type: System::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.

Exception Condition
ArgumentNullException

The name parameter is null.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft