You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I actually hadn't considered solving that problem, i.e. "You are already editing this record in another browser", but that's a completely valid scenario. Thanks @gplesz :)
So, I like what you're doing here, but i want the user names to be kept in tact so that on the client they display in a human-friendly format. I'm going to extend the class that encapsulates the list of connections and add an ID to the user so that, server-side, I can track this type of connection...every browser tab has it's own connection ID so this should be easy enough.
Maybe could monitor the connection ID, then:
string connectionId = Context.ConnectionId;
var username = string.Format("{0}|(connection:{1})", Context.User.Identity.Name, connectionId);
I do not know whether to be interesting, but you can watch here: https://github.com/gplesz/CollidR
(I also requested to send any pull.)
The text was updated successfully, but these errors were encountered: