CmisSync.Lib.Streams.StreamWrapper.Write C# (CSharp) Method

Write() public method

Write the specified buffer, offset and count.
public Write ( byte buffer, int offset, int count ) : void
buffer byte /// Buffer passed to the wrapped instance. ///
offset int /// Offset passed to the wrapped instance. ///
count int /// Count passed to the wrapped instance. ///
return void
        public override void Write(byte[] buffer, int offset, int count) {
            this.Stream.Write(buffer, offset, count);
        }