Sharpen.InputStream.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);
		}

Usage Example

Example #1
0
		public InflaterInputStream (InputStream s)
		{
			this.@in = s;
			this.inf = new Inflater ();
			base.Wrapped = new ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream (s.GetWrappedStream (), this.inf);
		}
All Usage Examples Of Sharpen.InputStream::GetWrappedStream