Mercurial > hg > ucis.core
view Util/PipeStream.cs @ 62:edc41c861d96
Updates and cleanup in Windows USB enumeration code
author | Ivo Smits <Ivo@UCIS.nl> |
---|---|
date | Sun, 13 Oct 2013 02:47:08 +0200 |
parents | 28dc7d535036 |
children |
line wrap: on
line source
???using System; namespace UCIS.Util { public class PipeStream : QueuedPacketStream { public override bool CanWrite { get { return !Closed; } } public override void Flush() { } public override void Write(byte[] buffer, int offset, int count) { if (Closed) throw new ObjectDisposedException("PipeStream"); AddReadBufferCopy(buffer, offset, count); } } }