Compartilhar via


Método Marshal.GetNativeVariantForObject (Object, IntPtr)

 

Dica

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

Converte um objeto em um COM VARIANT.

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

Sintaxe

[SecurityCriticalAttribute]
public static void GetNativeVariantForObject(
    object obj,
    IntPtr pDstNativeVariant
)
public:
[SecurityCriticalAttribute]
static void GetNativeVariantForObject(
    Object^ obj,
    IntPtr pDstNativeVariant
)
[<SecurityCriticalAttribute>]
static member GetNativeVariantForObject : 
        obj:Object *
        pDstNativeVariant:nativeint -> unit
<SecurityCriticalAttribute>
Public Shared Sub GetNativeVariantForObject (
    obj As Object,
    pDstNativeVariant As IntPtr
)

Parâmetros

  • obj
    Type: System.Object

    O objeto para o qual obter um COM VARIANT.

  • pDstNativeVariant
    Type: System.IntPtr

    Um ponteiro que receberá o VARIANT que corresponde ao parâmetro obj.

Exceções

Exception Condition
ArgumentException

O parâmetro obj é um tipo genérico.

Comentários

O pDstNativeVariant parâmetro deve apontar para a memória suficiente para armazenar a VARIANTE resultante. Além disso, a implementação desse método chama o VariantInit função na memória bruta que o pDstNativeVariant parâmetro aponta para.

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

Plataforma Universal do Windows
Disponível desde 8
.NET Framework
Disponível desde 1.1
Biblioteca de Classes Portátil
Com suporte no: plataformas portáteis do .NET
Windows Phone Silverlight
Disponível desde 8.0
Windows Phone
Disponível desde 8.1

Confira Também

GetNativeVariantForObject Sobrecarga
Classe Marshal
Namespace System.Runtime.InteropServices

Retornar ao início