File: net\System\Net\mail\IEncodableStream.cs
Project: ndp\fx\src\System.csproj (System)
namespace System.Net.Mime
{
    using System.IO;
 
    internal interface IEncodableStream
    {
        int DecodeBytes(byte[] buffer, int offset, int count);
        int EncodeBytes(byte[] buffer, int offset, int count);
        string GetEncodedString();
        Stream GetStream();
    }
}