Smartmobili.Cocoa.NSXMLParser.Characters C# (CSharp) Method

Characters() public method

public Characters ( char ch, int start, int length ) : void
ch char
start int
length int
return void
        public void Characters(char[] ch, int start, int length)
        {
            // Actually the sax parser is weird because sometimes the string is splitted.
            // So we don't call ParserFoundCharacters from here but inside StartElement and EndElement
            // through CharactersWorkaround()
            if (_nsXmlInterface != null)
            {
                _builder.Append(ch, start, length);

                //The following lines are used to debug the sax parser when using Compose.xib
                //NSString nodeText = _builder.ToString();
                //if (nodeText == "{{357, 418}, {480, 270}}") { System.Diagnostics.Debug.WriteLine("bp"); }
            }
        }