Partilhar via


ITrackingHandler.UnmarshaledObject(Object, ObjRef) Método

Definição

Notifica a instância atual que foi realizado unmarshaling em um objeto.

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)

Parâmetros

obj
Object

O objeto no qual foi realizado unmarshaling.

or
ObjRef

O ObjRef que representa o objeto especificado.

Atributos

Exemplos

O exemplo de código a seguir mostra como implementar esse método. Este exemplo de código faz parte de um exemplo maior fornecido para a ITrackingHandler interface .

// 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());
}

Aplica-se a