BinaryStudio.TaskManager.Logic.Core.ConnectionProvider.GetProjectConnections C# (CSharp) Метод

GetProjectConnections() публичный Метод

public GetProjectConnections ( int projectId ) : IEnumerable
projectId int
Результат IEnumerable
        public IEnumerable<ClientConnection> GetProjectConnections(int projectId)
        {
            return SignalRClients.Connections.Where(it => it.ProjectId == projectId);
        }