ModuleHandle.ResolveTypeHandle 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回元數據令牌所識別之類型的運行時間類型句柄。
多載
ResolveTypeHandle(Int32) |
傳回指定之元數據令牌所識別之型別的運行時間類型句柄。 |
ResolveTypeHandle(Int32, RuntimeTypeHandle[], RuntimeTypeHandle[]) |
傳回指定之元數據令牌所識別之型別的運行時間類型句柄,並指定令牌所在範圍的型別和方法的泛型型別自變數。 |
ResolveTypeHandle(Int32)
傳回指定之元數據令牌所識別之型別的運行時間類型句柄。
public:
RuntimeTypeHandle ResolveTypeHandle(int typeToken);
public RuntimeTypeHandle ResolveTypeHandle (int typeToken);
member this.ResolveTypeHandle : int -> RuntimeTypeHandle
Public Function ResolveTypeHandle (typeToken As Integer) As RuntimeTypeHandle
參數
- typeToken
- Int32
識別模組中型別的元數據令牌。
傳回
typeToken
所識別之型別的 RuntimeTypeHandle。
例外狀況
typeToken
不是目前模組中類型的有效元數據令牌。
-或-
typeToken
不是目前模組範圍中型別的令牌。
-或-
typeToken
是 TypeSpec
,其簽章包含項目類型 var
或 mvar
。
方法會在空的類型句柄上呼叫。
備註
若要解析簽章包含項目類型 var
或 mvar
之 TypeSpec
的元數據令牌,請使用 ResolveTypeHandle(Int32, RuntimeTypeHandle[], RuntimeTypeHandle[]) 方法多載,讓您提供必要的內容。
注意
您可以在 Common Language Infrastructure (CLI) 檔中找到元數據令牌的相關信息,,特別是「數據分割 II:元數據定義和語意」。
適用於
ResolveTypeHandle(Int32, RuntimeTypeHandle[], RuntimeTypeHandle[])
傳回指定之元數據令牌所識別之型別的運行時間類型句柄,並指定令牌所在範圍的型別和方法的泛型型別自變數。
public:
RuntimeTypeHandle ResolveTypeHandle(int typeToken, cli::array <RuntimeTypeHandle> ^ typeInstantiationContext, cli::array <RuntimeTypeHandle> ^ methodInstantiationContext);
public RuntimeTypeHandle ResolveTypeHandle (int typeToken, RuntimeTypeHandle[]? typeInstantiationContext, RuntimeTypeHandle[]? methodInstantiationContext);
public RuntimeTypeHandle ResolveTypeHandle (int typeToken, RuntimeTypeHandle[] typeInstantiationContext, RuntimeTypeHandle[] methodInstantiationContext);
member this.ResolveTypeHandle : int * RuntimeTypeHandle[] * RuntimeTypeHandle[] -> RuntimeTypeHandle
Public Function ResolveTypeHandle (typeToken As Integer, typeInstantiationContext As RuntimeTypeHandle(), methodInstantiationContext As RuntimeTypeHandle()) As RuntimeTypeHandle
參數
- typeToken
- Int32
識別模組中型別的元數據令牌。
- typeInstantiationContext
- RuntimeTypeHandle[]
RuntimeTypeHandle 結構的陣列,代表標記位於範圍之型別的泛型型別自變數,如果該型別不是泛型,則為 null
。
- methodInstantiationContext
- RuntimeTypeHandle[]
RuntimeTypeHandle 結構對象的陣列,代表標記位於範圍中之方法的泛型型別自變數,如果該方法不是泛型,則為 null
。
傳回
typeToken
所識別之型別的 RuntimeTypeHandle。
例外狀況
typeToken
不是目前模組中類型的有效元數據令牌。
-或-
typeToken
不是目前模組範圍中型別的令牌。
-或-
typeToken
是 TypeSpec
,其簽章包含項目類型 var
或 mvar
。
方法會在空的類型句柄上呼叫。
typeToken
不是有效的令牌。
備註
注意
您可以在 Common Language Infrastructure (CLI) 檔中找到元數據令牌的相關信息,,特別是「數據分割 II:元數據定義和語意」。