System.Xml.XmlUTF8TextReader.ReadWhitespace C# (CSharp) Method

ReadWhitespace() private method

private ReadWhitespace ( byte buffer, int offset, int offsetMax ) : int
buffer byte
offset int
offsetMax int
return int
        private int ReadWhitespace(byte[] buffer, int offset, int offsetMax)
        {
            byte[] charType = XmlUTF8TextReader.s_charType;
            int wsOffset = offset;
            while (offset < offsetMax && (charType[buffer[offset]] & CharType.SpecialWhitespace) != 0)
                offset++;
            return offset - wsOffset;
        }

Same methods

XmlUTF8TextReader::ReadWhitespace ( ) : void