Opc.Ua.Server.EventManager.GetMonitoredItems C# (CSharp) Method

GetMonitoredItems() public method

Returns the currently active monitored items.
public GetMonitoredItems ( ) : IList
return IList
        public IList<IEventMonitoredItem> GetMonitoredItems()
        {
            lock (m_lock)
            {
                return new List<IEventMonitoredItem>(m_monitoredItems.Values);
            }
        }
        #endregion