FUNCKIND Enumerazione

Definizione

Attenzione

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

In alternativa, utilizzare 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
Ereditarietà
FUNCKIND
Attributi

Campi

FUNC_DISPATCH 4

Alla funzione è possibile accedere solo mediante IDispatch.

FUNC_NONVIRTUAL 2

La funzione è accessibile tramite un indirizzo static e accetta un puntatore this implicito.

FUNC_PUREVIRTUAL 1

La funzione è accessibile tramite la tabella di funzioni virtual (VTBL) e assume un puntatore this implicito.

FUNC_STATIC 3

La funzione è accessibile tramite un indirizzo static e non accetta un puntatore this implicito.

FUNC_VIRTUAL 0

L'accesso alla funzione avviene in modo identico a FUNC_PUREVIRTUAL, ad eccezione del fatto che essa dispone di un'implementazione.

Commenti

Per altre informazioni su FUNCKIND, vedere MSDN Library.

Si applica a