CmisSync.Lib.Streams.AbortableStream.Write C# (CSharp) Метод

Write() публичный Метод

Write the specified buffer, offset and count.
public Write ( byte buffer, int offset, int count ) : void
buffer byte /// Buffer. ///
offset int /// Offset. ///
count int /// Count. ///
Результат void
        public override void Write(byte[] buffer, int offset, int count) {
            lock(this.l) {
                if (this.aborted) {
                    this.Exception = new AbortException();
                    throw this.exception;
                }
            }

            this.Stream.Write(buffer, offset, count);
        }