(byte[] buffer, int offset, int count)
| 22 | } |
| 23 | |
| 24 | public override void Write(byte[] buffer, int offset, int count) { |
| 25 | lock (syncLock) { |
| 26 | base.Write(buffer, offset, count); |
| 27 | if (Position > FlushTrigger) { |
| 28 | Flush(); |
| 29 | } |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | public override void Flush() { |
| 34 | base.Flush(); |
no outgoing calls
no test coverage detected