views:

9

answers:

0

I have an application that implements a simple timer (among other things). I wanted to use .NET remoting to be able to access the timer elapsed events from multiple other applications running on the same machine. I used: http://www.mctainsh.com/Articles/Csharp/RemoteCallback.aspx#A%5Fsimple%5Fexample as a reference for setting up the events/clients/server.

Currently when I run it whenever an event occurs on the server ALL connected clients receive the event. Is there a way to set it up so that if I have 5 clients connected to the server only clients 2 and 3 (for example) get the events. I don't want to take away the ability of any clients to receive the events, just make it so the server doesn't trigger them for certain clients at certain times.