Esempio n. 1
0
        void AddAuthenticationMechanisms(string text, int startIndex)
        {
            int index = startIndex;

            while (ReadNextToken(text, ref index, out var tokenIndex, out var length))
            {
                var mechanism = text.Substring(tokenIndex, length);

                AuthenticationMechanisms.Add(mechanism);
            }
        }