System.IO.Stream.SyncStream.Write C# (CSharp) Method

Write() public method

public Write ( byte bytes, int offset, int count ) : void
bytes byte
offset int
count int
return void
            public override void Write(byte[] bytes, int offset, int count)
            {
                lock(_stream)
                    _stream.Write(bytes, offset, count);
            }