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