BinaryStudio.TaskManager.Logic.Core.ConnectionProvider.GetProjectConnections C# (CSharp) Méthode

GetProjectConnections() public méthode

public GetProjectConnections ( int projectId ) : IEnumerable
projectId int
Résultat IEnumerable
        public IEnumerable<ClientConnection> GetProjectConnections(int projectId)
        {
            return SignalRClients.Connections.Where(it => it.ProjectId == projectId);
        }