Opc.Ua.Com.Server.ComAe2Subscription.GetFilter C# (CSharp) Method

GetFilter() public method

Get the event filter parameters.
public GetFilter ( int &eventTypes, ushort &lowSeverity, ushort &highSeverity, uint &categoryIds, string &areas, string &sources ) : void
eventTypes int
lowSeverity ushort
highSeverity ushort
categoryIds uint
areas string
sources string
return void
        public void GetFilter(
            out int eventTypes,
            out ushort lowSeverity,
            out ushort highSeverity,
            out uint[] categoryIds,
            out string[] areas,
            out string[] sources)
        {
            ThrowIfDisposed();

            lock (m_lock)
            {
                eventTypes = m_filter.EventTypes;
                lowSeverity = m_filter.LowSeverity;
                highSeverity = m_filter.HighSeverity;
                categoryIds = m_filter.RequestedCategoryIds;
                areas = m_areas;
                sources = m_sources;
            }
        }