What I am trying to do is to recreate that sample with 4.0.
In the WebRTCSample in CustomBroker and ContextHelper files is called a method SentTo witch sends an object as an ITextArgs
obj.SendTo(c => c.Peer.Context.Equals(context), obj.Find(q => q.Peer.Context.Equals(context)).Select(p => p.Peer), Events.Context.Changed);
I know that in 4.0 ( installed into OWIN (IIS)) ITextArgs is replaced with IMessage but I don't know how SendTo method is replaced, what is its replacement ?
Also when i installed the 4.0 version it didn't installed in project any Js files ( XSockets.WebRTC.latest.js etc.) is ok to take the ones from Sample and use them in my new project ?