TypeDelegator.GetInterface(String, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回由当前 TypeDelegator 包装的类型实现的指定接口。
public:
override Type ^ GetInterface(System::String ^ name, bool ignoreCase);
public override Type? GetInterface (string name, bool ignoreCase);
public override Type GetInterface (string name, bool ignoreCase);
override this.GetInterface : string * bool -> Type
Public Overrides Function GetInterface (name As String, ignoreCase As Boolean) As Type
参数
- name
- String
由当前类实现的接口的完全限定名。
- ignoreCase
- Boolean
如果忽略大小写,则为 true
;否则为 false
。
返回
Type
对象,表示由当前类(直接或间接)实现的具有匹配指定名称的完全限定名的接口。 如果未找到匹配名称的接口,则返回 null。
例外
name
参数为 null
。