Type.IsImport Propiedad

Definición

Obtiene un valor que indica si el objeto Type tiene aplicado un atributo ComImportAttribute, lo que indica que se ha importado de una biblioteca de tipos COM.

public:
 property bool IsImport { bool get(); };
public bool IsImport { get; }
member this.IsImport : bool
Public ReadOnly Property IsImport As Boolean

Valor de propiedad

Boolean

true si Type tiene un atributo ComImportAttribute; de lo contrario, false.

Implementaciones

Comentarios

Si el objeto actual representa un tipo genérico construido, esta propiedad se aplica a la definición de tipo genérico a partir de la cual Type se construyó el tipo. Por ejemplo, si el objeto actual representa ( en Visual Basic), el Type valor de esta propiedad viene determinado MyGenericType<int> MyGenericType(Of Integer) porMyGenericType<T>.

Si el objeto actual representa un parámetro de tipo en la definición de un tipo genérico o un método Type genérico, esta propiedad siempre devuelve false .

Se aplica a

Consulte también