Método Marshal.GetUniqueObjectForIUnknown (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.
Cria uma única RCW (Runtime Callable Wrapper) objeto (RCW) para um determinado IUnknown interface.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (em mscorlib.dll)
Sintaxe
[SecurityCriticalAttribute]
public static object GetUniqueObjectForIUnknown(
IntPtr unknown
)
public:
[SecurityCriticalAttribute]
static Object^ GetUniqueObjectForIUnknown(
IntPtr unknown
)
[<SecurityCriticalAttribute>]
static member GetUniqueObjectForIUnknown :
unknown:nativeint -> Object
<SecurityCriticalAttribute>
Public Shared Function GetUniqueObjectForIUnknown (
unknown As IntPtr
) As Object
Parâmetros
unknown
Type: System.IntPtrUm ponteiro gerenciado para uma interface IUnknown.
Valor Retornado
Type: System.Object
Um RCW exclusivo para a interface IUnknown especificada.
Comentários
O GetUniqueObjectForIUnknown método garante que você receba um RCW exclusivo, porque não corresponde a um IUnknown ponteiro para um objeto existente. Use este método quando você precisa criar um RCW exclusivo que não seja afetado por outro código que chama o ReleaseComObject método.
Segurança
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 2.0
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
Classe Marshal
Namespace System.Runtime.InteropServices
Retornar ao início