Sdílet prostřednictvím


ITrackingHandler.UnmarshaledObject(Object, ObjRef) Metoda

Definice

Upozorní aktuální instanci, že objekt byl zrušen.

public:
 void UnmarshaledObject(System::Object ^ obj, System::Runtime::Remoting::ObjRef ^ or);
public void UnmarshaledObject (object obj, System.Runtime.Remoting.ObjRef or);
[System.Security.SecurityCritical]
public void UnmarshaledObject (object obj, System.Runtime.Remoting.ObjRef or);
abstract member UnmarshaledObject : obj * System.Runtime.Remoting.ObjRef -> unit
[<System.Security.SecurityCritical>]
abstract member UnmarshaledObject : obj * System.Runtime.Remoting.ObjRef -> unit
Public Sub UnmarshaledObject (obj As Object, or As ObjRef)

Parametry

obj
Object

Objekt bez ohraničení.

or
ObjRef

Objekt ObjRef , který představuje zadaný objekt.

Atributy

Příklady

Následující příklad kódu ukazuje, jak implementovat tuto metodu. Tento příklad kódu je součástí většího příkladu ITrackingHandler , který je k dispozici pro rozhraní.

// Called when the tracked object is unmarshaled.
public void UnmarshaledObject(Object obj, ObjRef objRef)
{
    Console.WriteLine("Tracking: An instance of {0} was unmarshaled.", 
        obj.ToString());
}

Platí pro