Sha256: 5437c6a7f66e3dfe104d882f073e07de00fce9b0cf07891ec90bc9cf54a0b590
Contents?: true
Size: 474 Bytes
Versions: 23
Compression:
Stored size: 474 Bytes
Contents
using System; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace rho.common { public interface IInputStream { long available(); int read(); int read(byte[] buffer, int bufOffset, int bytesToRead); void reset(); } }
Version data entries
23 entries across 23 versions & 1 rubygems