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

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

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

            return this.Stream.Read(buffer, offset, count);
        }