_Type.GetInterface 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為 COM 物件提供與版本無關的 GetInterface 方法之存取權。
多載
GetInterface(String) |
為 COM 物件提供與版本無關的 GetInterface(String) 方法之存取權。 |
GetInterface(String, Boolean) |
為 COM 物件提供與版本無關的 GetInterface(String, Boolean) 方法之存取權。 |
備註
此方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。
方法 Type.GetInterface 會取得目前 Type所實作或繼承的特定介面。
GetInterface(String)
為 COM 物件提供與版本無關的 GetInterface(String) 方法之存取權。
public:
Type ^ GetInterface(System::String ^ name);
public Type GetInterface (string name);
abstract member GetInterface : string -> Type
Public Function GetInterface (name As String) As Type
參數
傳回
Type 物件,表示具有指定之名稱的介面是由目前 Type 所實作或繼承的 (如有找到);否則為 null
。
備註
此方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。
方法 Type.GetInterface 會搜尋具有指定名稱的介面。
適用於
GetInterface(String, Boolean)
為 COM 物件提供與版本無關的 GetInterface(String, Boolean) 方法之存取權。
public:
Type ^ GetInterface(System::String ^ name, bool ignoreCase);
public Type GetInterface (string name, bool ignoreCase);
abstract member GetInterface : string * bool -> Type
Public Function GetInterface (name As String, ignoreCase As Boolean) As Type
參數
傳回
Type 物件,表示具有指定之名稱的介面是由目前 Type 所實作或繼承的 (如有找到);否則為 null
。
備註
此方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。
方法 Type.GetInterface 會搜尋指定的介面,指定是否要執行區分大小寫的搜尋。