ReadValueChunk() public method

public ReadValueChunk ( char buffer, int offset, int length ) : int
buffer char
offset int
length int
return int
示例#1
0
        internal virtual int ReadValueChunk(
            char [] buffer, int offset, int length)
#endif
        {
            if (!CanReadValueChunk)
            {
                throw new NotSupportedException();
            }
            if (binary == null)
            {
                binary = new XmlReaderBinarySupport(this);
            }
            return(binary.ReadValueChunk(buffer, offset, length));
        }