Opc.Ua.Server.SessionManager.GetSessions C# (CSharp) Method

GetSessions() public method

Returns all of the sessions known to the session manager.
public GetSessions ( ) : IList
return IList
        public IList<Session> GetSessions()
        {
            lock (m_lock)
            {
                return new List<Session>(m_sessions.Values);
            }
        }
        #endregion