Sharpen.OutputStream.GetWrappedStream C# (CSharp) Method

GetWrappedStream() private method

private GetWrappedStream ( ) : Stream
return Stream
		internal Stream GetWrappedStream ()
		{
			// Always create a wrapper stream (not directly Wrapped) since the subclass
			// may be overriding methods that need to be called when used through the Stream class
			return new WrappedSystemStream (this);
		}