4 implementations of DecodeBytes
System.Net.Mail (4)
System\Net\Base64Stream.cs (1)
83public unsafe int DecodeBytes(byte[] buffer, int offset, int count)
System\Net\Mime\EightBitStream.cs (1)
133public int DecodeBytes(byte[] buffer, int offset, int count) { throw new NotImplementedException(); }
System\Net\Mime\QEncodedStream.cs (1)
64public unsafe int DecodeBytes(byte[] buffer, int offset, int count)
System\Net\Mime\QuotedPrintableStream.cs (1)
94public unsafe int DecodeBytes(byte[] buffer, int offset, int count)
1 reference to DecodeBytes
System.Net.Mail (1)
System\Net\Mime\MimeBasePart.cs (1)
79newLength = s.DecodeBytes(buffer, 0, buffer.Length);