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

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            switch (m_filterType)
            {
                case FilterType.Universal:
                    return "Universal";
                case FilterType.Type:
                    return "Type:" + m_text;
                case FilterType.Assembly:
                    return "Assembly:" + m_text;
            }
            return m_text;
        }