SignalR.EventStreamConnectionManager.GetConnection C# (CSharp) Method

GetConnection() public method

public GetConnection ( string userId ) : IEnumerable
userId string
return IEnumerable
        public IEnumerable<string> GetConnection(string userId)
        {
            if (Users.ContainsKey(userId))
                return Users[userId];

            return null;
        }