FlushBuffer() private method

Expert: implements buffer write. Writes bytes at the current position in the output.
private FlushBuffer ( byte b, int len ) : void
b byte the bytes to write ///
len int the number of bytes to write ///
return void
示例#1
0
 protected internal override void FlushBuffer(byte[] b, int offset, int len)
 {
     rateLimiter.Pause(len);
     if (bufferedDelegate != null)
     {
         bufferedDelegate.FlushBuffer(b, offset, len);
     }
     else
     {
         @delegate.WriteBytes(b, offset, len);
     }
 }