Marshal.GetStartComSlot(Type) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得虛擬函式表 (v-table 或 VTBL) 中包含使用者定義之方法的第一個位置。
public:
static int GetStartComSlot(Type ^ t);
[System.Security.SecurityCritical]
public static int GetStartComSlot (Type t);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static int GetStartComSlot (Type t);
public static int GetStartComSlot (Type t);
[<System.Security.SecurityCritical>]
static member GetStartComSlot : Type -> int
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
static member GetStartComSlot : Type -> int
static member GetStartComSlot : Type -> int
Public Shared Function GetStartComSlot (t As Type) As Integer
參數
- t
- Type
代表介面或類別的類型。
傳回
包含使用者定義之方法的第一個 VTBL 位置。 如果介面是以 IUnknown 為基礎,第一個插槽為 3,如果介面是以 IDispatch 為基礎則為 7。
- 屬性
例外狀況
t
對於 COM 不是可見的。
備註
這個方法會傳回介面或類別之以零起始的 v 數據表編號。 在類別上使用時,傳回的插槽編號會參考 類別的類別介面。 如果類別介面是自動分派,這個方法一律會傳回 -1,表示僅分派介面不會向受控客戶端公開 v 數據表。 您可以使用 GetStartComSlot 和 Marshal.GetEndComSlot 搭配 Marshal.GetMethodInfoForComSlot ,在指定的範圍內傳遞位置。 如需詳細資訊,請參閱 類別介面簡介。