Compartilhar via


Método Marshal.GetHINSTANCE (Module)

 

Dica

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

Retorna o identificador de instância (HINSTANCE) do módulo especificado.

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

Sintaxe

[SecurityCriticalAttribute]
public static IntPtr GetHINSTANCE(
    Module m
)
public:
[SecurityCriticalAttribute]
static IntPtr GetHINSTANCE(
    Module^ m
)
[<SecurityCriticalAttribute>]
static member GetHINSTANCE : 
        m:Module -> nativeint
<SecurityCriticalAttribute>
Public Shared Function GetHINSTANCE (
    m As Module
) As IntPtr

Parâmetros

Valor Retornado

Type: System.IntPtr

O HINSTANCE de m; ou -1 se o módulo não tiver um HINSTANCE.

Exceções

Exception Condition
ArgumentNullException

O parâmetro m é null.

Comentários

Quando os módulos dinâmicos ou na memória, não tem um HINSTANCE.

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

Classe Marshal
Namespace System.Runtime.InteropServices

Retornar ao início