FUNCKIND 列舉

定義

警告

Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202

請改用 FUNCKIND

public enum class FUNCKIND
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public enum FUNCKIND
[System.Serializable]
[System.Obsolete("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)]
public enum FUNCKIND
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type FUNCKIND = 
[<System.Serializable>]
[<System.Obsolete("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)>]
type FUNCKIND = 
Public Enum FUNCKIND
繼承
FUNCKIND
屬性

欄位

FUNC_DISPATCH 4

函式只能透過 IDispatch 來存取。

FUNC_NONVIRTUAL 2

此函式是透過 static 位址來存取,並接受隱含的 this 指標。

FUNC_PUREVIRTUAL 1

函式透過虛擬函式表 (Virtual Function Table,VTBL) 來存取,並接受隱含 this 指標。

FUNC_STATIC 3

此函式是透過 static 位址來存取,且不接受隱含的 this 指標。

FUNC_VIRTUAL 0

函式以如同 FUNC_PUREVIRTUAL 的方式被存取,只差別在這函式具有實作。

備註

如需 的詳細資訊 FUNCKIND,請參閱 MSDN 連結庫。

適用於