Squishy.Irc.IrcClient.SupportsSymbols C# (CSharp) Method

SupportsSymbols() public method

Indicates wether or not the current Irc 4rk supports the specified Channel symbols (such as @,+ etc) - Independent on the sequence.
public SupportsSymbols ( string symbols ) : bool
symbols string A sequence of symbols, representing Channel flags (such as '@')
return bool
        public bool SupportsSymbols(string symbols)
        {
            foreach (char c in symbols)
                if (m_CSymbols.IndexOf(c) < 0)
                    return false;
            return true;
        }