PHP.Core.ExternalStream.ExternalStream C# (CSharp) Method

ExternalStream() private method

Creates a new ExternalStream with the given proxy object.
private ExternalStream ( IExternalStream proxy, StreamWrapper openingWrapper, StreamAccessOptions accessOptions, string openedPath, PHP.Core.StreamContext context ) : System
proxy IExternalStream Instance of a class derived from that should /// serve as a proxy for this .
openingWrapper StreamWrapper The parent instance.
accessOptions StreamAccessOptions The additional options parsed from the fopen() mode.
openedPath string The absolute path to the opened resource.
context PHP.Core.StreamContext The stream context passed to fopen().
return System
		internal ExternalStream(IExternalStream proxy, StreamWrapper openingWrapper, StreamAccessOptions accessOptions, string openedPath, StreamContext context)
			: base(openingWrapper, accessOptions, openedPath, context)
		{
			this.proxy = proxy;
		}