What do I do in order to fire an event when a new client connects to WCF-hosted service?
EDIT: What I'm looking is to get an event when a new session is created or new Channel gets created for a client. Such as: for session closure I'm using:
OperationContext.Current.Channel.Closed += new EventHandler( Channel_Closed );
so what should I be using for session iitiation?