System.Xml.XmlTextReader.ReadChars C# (CSharp) Method

ReadChars() public method

public ReadChars ( char buffer, int index, int count ) : int
buffer char
index int
count int
return int
        public int ReadChars(char[] buffer, int index, int count)
        {
            return _impl.ReadChars(buffer, index, count);
        }

Usage Example

 [MonoTODO] // FIXME: Check how expanded entity is handled here.
 public int ReadChars(char [] buffer, int offset, int length)
 {
     if (entity != null)
     {
         return(entity.ReadChars(buffer, offset, length));
     }
     else
     {
         return(source.ReadChars(buffer, offset, length));
     }
 }
All Usage Examples Of System.Xml.XmlTextReader::ReadChars