public RemoteClientConnection ReplyToPeer()
 {
     if (_Remote == null)
     {
         _Remote = new RemoteClientConnection(this);
     }
     TargetPeer = SenderPeer;
     return(_Remote);
 }
 public RemoteClientConnection SendToPeers(IEnumerable <BMW.Verification.CloudRayTracing.Peer> targetPeerGroup)
 {
     if (_Remote == null)
     {
         _Remote = new RemoteClientConnection(this);
     }
     TargetPeerGroup = targetPeerGroup;
     return(_Remote);
 }
 public RemoteClientConnection SendToPeer(BMW.Verification.CloudRayTracing.Peer targetPeer)
 {
     if (_Remote == null)
     {
         _Remote = new RemoteClientConnection(this);
     }
     TargetPeer = targetPeer;
     return(_Remote);
 }