GSF.Diagnostics.PublisherFilter.PublisherFilter C# (CSharp) Method

PublisherFilter() private method

Creates a either Universal or LogSource Topic
private PublisherFilter ( FilterType filterType ) : System
filterType FilterType
return System
        private PublisherFilter(FilterType filterType)
        {
            if (filterType == FilterType.Universal)
            {
                m_text = "Universal";
            }
            else
            {
                throw new InvalidEnumArgumentException(nameof(filterType), (int)filterType, typeof(FilterType));
            }
            m_filterType = filterType;
            m_isExpression = false;
            m_regexMatch = null;
        }

Same methods

PublisherFilter::PublisherFilter ( FilterType filterType, string text ) : System