Opc.Ua.Server.SessionManager.GetSessions C# (CSharp) Метод

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

Returns all of the sessions known to the session manager.
public GetSessions ( ) : IList
Результат IList
        public IList<Session> GetSessions()
        {
            lock (m_lock)
            {
                return new List<Session>(m_sessions.Values);
            }
        }
        #endregion