Compartilhar via


Enumeração FUNCKIND

 

Dica

The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.

Observação: Esta API agora está obsoleta.

Use System.Runtime.InteropServices.ComTypes.FUNCKIND em seu lugar.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (em mscorlib.dll)

Sintaxe

[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

Membros

Nome do membro Descrição
FUNC_DISPATCH

A função pode ser acessada somente por meio de IDispatch.

FUNC_NONVIRTUAL

A função é acessada pelo endereço static e aceita um ponteiro this implícito.

FUNC_PUREVIRTUAL

A função é acessada pela VTBL (tabela de função virtual) e usa um ponteiro this implícito.

FUNC_STATIC

A função é acessada pelo endereço static e não aceita um ponteiro this implícito.

FUNC_VIRTUAL

A função é acessada assim como FUNC_PUREVIRTUAL, exceto pelo fato de que a função tem uma implementação.

Comentários

Para obter informações adicionais sobre FUNCKIND, consulte a biblioteca MSDN.

Informações de Versão

.NET Framework
Disponível desde 1.1

Confira Também

Namespace System.Runtime.InteropServices

Retornar ao início