5 overrides of Convert
mscorlib (1)
system\text\decodernls.cs (1)
201public override unsafe void Convert(byte[] bytes, int byteIndex, int byteCount,
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlSequentialTextReader.cs (1)
522public override void Convert(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex, int charCount, bool flush, out int bytesUsed, out int charsUsed, out bool completed)
System.Xml (3)
System\Xml\XmlEncoding.cs (3)
79public override void Convert( byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex, int charCount, bool flush, out int bytesUsed, out int charsUsed, out bool completed ) { 156public override void Convert( byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex, int charCount, bool flush, out int bytesUsed, out int charsUsed, out bool completed ) { 373public override void Convert( byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex, int charCount, bool flush, out int bytesUsed, out int charsUsed, out bool completed ) {
3 references to Convert
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlSequentialTextReader.cs (1)
400_decoder.Convert(inBuffer, 0, inBufferCount, outBuffer, outBufferOffset, outBufferCount, false, out bytesUsed, out charsRead, out completed);
System.Xml (2)
System\Xml\Core\XmlTextReaderImpl.cs (2)
3208ps.decoder.Convert( ps.bytes, ps.bytePos, bytesCount, ps.chars, ps.charsUsed, maxCharsCount, false, out bytesCount, out charsCount, out completed ); 3229ps.decoder.Convert( ps.bytes, ps.bytePos + bytesDecoded, 1, ps.chars, ps.charsUsed + charsDecoded, 1, false, out bDec, out chDec, out completed );