Appccelerate.IO.Streams.StreamDecoratorStream.AssertStreamNotNull C# (CSharp) Méthode

AssertStreamNotNull() private méthode

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