コード例 #1
0
 public override void Invoke(IDistributedInterface target)
 {
     // Create message is a special case; it doesn't invoke anything on the local object beyond constructing it.
 }
コード例 #2
0
 public override void Invoke(IDistributedInterface target)
 {
     ((IThing)target).Ping(Message);
 }
コード例 #3
0
 public override void Invoke(IDistributedInterface target)
 {
     target.OnDelete();
 }
コード例 #4
0
 public override void Invoke(IDistributedInterface target)
 {
     ((IThing)target).Enqueue(Values);
 }
コード例 #5
0
 /// <summary>
 /// Invoke the message on the given target, which may be a distributed object or a local object.
 /// </summary>
 public abstract void Invoke(IDistributedInterface target);