EnumBuilder.GetInterface(String, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的完全限定名返回此类型(直接或间接)实现的接口。
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。
例外
不完整类型目前不支持此方法。
注解
作为一种解决方法,若要检索完成类型的接口,请使用 Type.GetType 或 Assembly.GetType 检索到的类型检索类型,并在检索到的类型上使用反射。