4 implementations of EncodeBytes
System.Net.Mail (4)
System\Net\Base64Stream.cs (1)
136public int EncodeBytes(byte[] buffer, int offset, int count) =>
System\Net\Mime\EightBitStream.cs (1)
135public int EncodeBytes(byte[] buffer, int offset, int count) { throw new NotImplementedException(); }
System\Net\Mime\QEncodedStream.cs (1)
182public int EncodeBytes(byte[] buffer, int offset, int count) => _encoder.EncodeBytes(buffer, offset, count, true, true);
System\Net\Mime\QuotedPrintableStream.cs (1)
204public int EncodeBytes(byte[] buffer, int offset, int count)