Squishy.Irc.IrcClient.SupportsSymbols C# (CSharp) Метод

SupportsSymbols() публичный Метод

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 '@')
Результат bool
        public bool SupportsSymbols(string symbols)
        {
            foreach (char c in symbols)
                if (m_CSymbols.IndexOf(c) < 0)
                    return false;
            return true;
        }