Marshal.IsTypeVisibleFromCom(Type) Methode

Definition

Gibt an, ob ein Typ für COM-Clients sichtbar ist.

public:
 static bool IsTypeVisibleFromCom(Type ^ t);
public static bool IsTypeVisibleFromCom (Type t);
static member IsTypeVisibleFromCom : Type -> bool
Public Shared Function IsTypeVisibleFromCom (t As Type) As Boolean

Parameter

t
Type

Der Typ, der auf Sichtbarkeit für COM zu überprüfen ist.

Gibt zurück

true, wenn der Typ für COM sichtbar ist, andernfalls false.

Hinweise

IsTypeVisibleFromCom ermöglicht es Ihnen, in einem Schritt auf COM-Sichtbarkeit zu überprüfen. Typen, die nicht sichtbar sind, können nicht von COM verwendet werden. Ein Typ ist sichtbar, wenn er nicht mit System.Runtime.InteropServices.ComVisibleAttributeausgeblendet istpublic.

Gilt für:

Weitere Informationen