Appccelerate.IO.Streams.StreamDecoratorStream.AssertStreamNotNull C# (CSharp) 메소드

AssertStreamNotNull() 개인적인 메소드

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