Compartir a través de


Enumeración FUNCKIND

 

Publicado: octubre de 2016

Nota: Esta API ahora está obsoleta.

Utilice System.Runtime.InteropServices.ComTypes.FUNCKIND en su lugar.

Espacio de nombres:   System.Runtime.InteropServices
Ensamblado:  mscorlib (en mscorlib.dll)

Sintaxis

[SerializableAttribute]
[ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. https://go.microsoft.com/fwlink/?linkid=14202", 
    false)]
public enum FUNCKIND
[SerializableAttribute]
[ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. https://go.microsoft.com/fwlink/?linkid=14202", 
    false)]
public enum class FUNCKIND
[<SerializableAttribute>]
[<ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. https://go.microsoft.com/fwlink/?linkid=14202",
    false)>]
type FUNCKIND
<SerializableAttribute>
<ObsoleteAttribute("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. https://go.microsoft.com/fwlink/?linkid=14202",
    False)>
Public Enumeration FUNCKIND

Miembros

Nombre de miembro Descripción
FUNC_DISPATCH

Se puede tener acceso solo a la función IDispatch.

FUNC_NONVIRTUAL

La función tiene acceso a static de direcciones y toma un implícita this puntero.

FUNC_PUREVIRTUAL

La función se tiene acceso a través de la tabla de función virtual (VTBL) y toma un implícita this puntero.

FUNC_STATIC

La función tiene acceso a static de direcciones y no toma implícita this puntero.

FUNC_VIRTUAL

Se tiene acceso a la función igual que FUNC_PUREVIRTUAL, salvo que la función tiene una implementación.

Comentarios

Para obtener información adicional acerca de FUNCKIND, vea MSDN Library.

Información de versión

.NET Framework
Disponible desde 1.1

Ver también

Espacio de nombres System.Runtime.InteropServices

Volver al principio