Compartilhar via


Método IRegistrationServices.RegisterAssembly (Assembly, AssemblyRegistrationFlags)

 

Dica

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

Registra as classes em um assembly gerenciado para habilitar a criação de COM.

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

Sintaxe

[SecurityCriticalAttribute]
bool RegisterAssembly(
    Assembly assembly,
    AssemblyRegistrationFlags flags
)
[SecurityCriticalAttribute]
bool RegisterAssembly(
    Assembly^ assembly,
    AssemblyRegistrationFlags flags
)
[<SecurityCriticalAttribute>]
abstract RegisterAssembly : 
        assembly:Assembly *
        flags:AssemblyRegistrationFlags -> bool
<SecurityCriticalAttribute>
Function RegisterAssembly (
    assembly As Assembly,
    flags As AssemblyRegistrationFlags
) As Boolean

Parâmetros

Valor Retornado

Type: System.Boolean

true se assembly contiver tipos que foram registrados com êxito; caso contrário, false se o assembly contiver tipos não elegíveis.

Exceções

Exception Condition
ArgumentNullException

assembly é null.

InvalidOperationException

O nome completo de assembly é null.

-ou-

Um método marcado com ComRegisterFunctionAttribute não é static.

-ou-

Há mais de um método marcado com ComRegisterFunctionAttribute em determinado nível da hierarquia.

-ou-

A assinatura do método marcada com ComRegisterFunctionAttribute não é válida.

Comentários

RegisterAssemblyAdiciona as entradas de registro apropriados para os tipos no assembly especificado. Este método também chama nenhuma função de registro encontrada no assembly.

Use Assembly.Load para obter um assembly.

Segurança

SecurityCriticalAttribute

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

Informações de Versão

.NET Framework
Disponível desde 1.1

Confira Também

Interface IRegistrationServices
Namespace System.Runtime.InteropServices

Retornar ao início