CSharpUtils.Streams.ProxyStream.ProxyStream C# (CSharp) Method

ProxyStream() public method

public ProxyStream ( Stream BaseStream, bool CloseParent = false ) : System
BaseStream Stream
CloseParent bool
return System
		public ProxyStream(Stream BaseStream, bool CloseParent = false)
		{
			this.ParentStream = BaseStream;
			this.CloseParent = CloseParent;
		}