SharpCifs.Util.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 InputStreamReader(InputStream s) : base(s.GetWrappedStream())
 {
 }
All Usage Examples Of SharpCifs.Util.Sharpen.InputStream::GetWrappedStream