共用方式為


ITrackingHandler.UnmarshaledObject(Object, ObjRef) 方法

定義

告知目前執行個體,物件已經解除封送處理。

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)

參數

obj
Object

解除封送處理的物件。

or
ObjRef

表示指定物件的 ObjRef

屬性

範例

下列程式代碼範例示範如何實作這個方法。 此程式代碼範例是提供給 介面之較大範例的 ITrackingHandler 一部分。

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

適用於