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

ToString() public method

Returns a that represents the current .
Thrown when no stream is assigned as decorated stream. ///
public ToString ( ) : string
return string
        public override string ToString()
        {
            this.AssertStreamNotNull();
            return this.decoratedStream.ToString();
        }