Appccelerate.IO.Streams.StreamDecoratorStream.AssertStreamNotNull C# (CSharp) Method

AssertStreamNotNull() private method

Asserts the stream is not null.
private AssertStreamNotNull ( ) : void
return void
        private void AssertStreamNotNull()
        {
            if (this.decoratedStream == null)
            {
                this.ThrowNoStreamException();
            }
        }
    }