Implemented interface member:
method
EncodeBytes
System.Net.Mime.IByteEncoder.EncodeBytes(System.Byte[], System.Int32, System.Int32, System.Boolean, System.Boolean)
3 references to EncodeBytes
System.Net.Mail (3)
System\Net\Base64Stream.cs (1)
141return _encoder.EncodeBytes(buffer, offset, count, dontDeferFinalBytes, shouldAppendSpaceToCRLF);
System\Net\Mime\ByteEncoder.cs (1)
63return EncodeBytes(buffer, 0, buffer.Length, true, true);
System\Net\Mime\QEncodedStream.cs (1)
182public int EncodeBytes(byte[] buffer, int offset, int count) => _encoder.EncodeBytes(buffer, offset, count, true, true);