Compartir a través de


Enumeración TYPEKIND

 

Publicado: octubre de 2016

Nota: Esta API ahora está obsoleta.

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

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

Sintaxis

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

Miembros

Nombre de miembro Descripción
TKIND_ALIAS

Un tipo que es un alias de otro tipo.

TKIND_COCLASS

Un conjunto de interfaces de componentes implementados.

TKIND_DISPATCH

Un conjunto de métodos y propiedades que son accesibles a través de IDispatch::Invoke. De forma predeterminada, se devuelven interfaces duales TKIND_DISPATCH.

TKIND_ENUM

Un conjunto de enumeradores.

TKIND_INTERFACE

Un tipo que tiene funciones virtuales, todos los cuales son puros.

TKIND_MAX

Marcador de fin de enumeración.

TKIND_MODULE

Un módulo que sólo puede tener funciones estáticas y los datos (por ejemplo, un archivo DLL).

TKIND_RECORD

Una estructura sin métodos.

TKIND_UNION

Unión de todos los miembros que tienen un desplazamiento de cero.

Comentarios

Para obtener información adicional acerca de TYPEKIND, 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