次の方法で共有


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

適用対象