Udostępnij za pośrednictwem


Marshal.GetIUnknownForObjectInContext(Object) Metoda

Definicja

Zwraca interfejs IUnknown z obiektu zarządzanego, jeśli obiekt wywołujący znajduje się w tym samym kontekście co ten obiekt.

public:
 static IntPtr GetIUnknownForObjectInContext(System::Object ^ o);
public static IntPtr GetIUnknownForObjectInContext (object o);
[System.Security.SecurityCritical]
public static IntPtr GetIUnknownForObjectInContext (object o);
static member GetIUnknownForObjectInContext : obj -> nativeint
[<System.Security.SecurityCritical>]
static member GetIUnknownForObjectInContext : obj -> nativeint
Public Shared Function GetIUnknownForObjectInContext (o As Object) As IntPtr

Parametry

o
Object

Obiekt, którego IUnknown interfejs jest żądany.

Zwraca

IntPtr

nativeint

Wskaźnik IUnknown dla określonego obiektu lub null jeśli obiekt wywołujący nie znajduje się w tym samym kontekście co określony obiekt.

Atrybuty

Przykłady

W poniższym przykładzie pokazano, jak pobrać IUnknown interfejs dla obiektu zarządzanego przy użyciu GetIUnknownForObjectInContext metody .

using System;
using System.Runtime.InteropServices;

class Program
{

    static void Run()
    {

        // Create an int object
        int obj = 1;

        Console.WriteLine("Calling Marshal.GetIUnknownForObjectInContext...");

        // Get the IUnKnown pointer for the Integer object
        IntPtr pointer = Marshal.GetIUnknownForObjectInContext(obj);

        Console.WriteLine("Calling Marshal.Release...");

        // Always call Marshal.Release to decrement the reference count.
        Marshal.Release(pointer);
    }

    static void Main(string[] args)
    {
        Run();
    }
}
Imports System.Runtime.InteropServices

Module Program


    Sub Run()

        ' Dim an Integer object
        Dim IntegerObject As Integer = 1

        ' Dim a pointer
        Dim pointer As IntPtr

        Console.WriteLine("Calling Marshal.GetIUnknownForObjectInContext...")

        ' Get the IUnKnown pointer for the Integer object
        pointer = Marshal.GetIUnknownForObjectInContext(IntegerObject)

        Console.WriteLine("Calling Marshal.Release...")

        ' Always call Marshal.Release to decrement the reference count.
        Marshal.Release(pointer)



    End Sub

    Sub Main(ByVal args() As String)

        Run()

    End Sub

End Module

Uwagi

Ta metoda jest taka sama jak GetIUnknownForObject ta, z tą różnicą, że zwraca wartość null , jeśli obiekt wywołujący nie znajduje się w tym samym kontekście co obiekt.

Dotyczy

Zobacz też