Compartir a través de


Método IRegistrationServices.RegisterTypeForComClients (Type, Guid)

 

Publicado: octubre de 2016

Registra el tipo especificado con COM utilizando el GUID especificado.

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

Sintaxis

[SecurityCriticalAttribute]
void RegisterTypeForComClients(
    Type type,
    ref Guid g
)
[SecurityCriticalAttribute]
void RegisterTypeForComClients(
    Type^ type,
    Guid% g
)
[<SecurityCriticalAttribute>]
abstract RegisterTypeForComClients : 
        type:Type *
        g:Guid byref -> unit
<SecurityCriticalAttribute>
Sub RegisterTypeForComClients (
    type As Type,
    ByRef g As Guid
)

Parámetros

  • type
    Type: System.Type

    El tipo que se registra para utilizarlo desde COM.

  • g
    Type: System.Guid

    GUID utilizado para registrar el tipo especificado.

Comentarios

Este método es equivalente a llamar a CoRegisterClassObject en COM.

Seguridad

SecurityCriticalAttribute

requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

Información de versión

.NET Framework
Disponible desde 1.1

Ver también

Interfaz IRegistrationServices
Espacio de nombres System.Runtime.InteropServices

Volver al principio