Pchp.Library.Output.ob_implicit_flush C# (CSharp) Method

ob_implicit_flush() public static method

Switches implicit flushing on. No value is returned.
Affects the current script context.
public static ob_implicit_flush ( Context ctx ) : void
ctx Pchp.Core.Context
return void
        public static void ob_implicit_flush(Context ctx)
        {
            //var http_context = ctx.TryGetProperty<HttpContext>();
            //if (http_context != null) http_context.Response.BufferOutput = true;
            throw new NotImplementedException(); // move to pchplib.web.dll
        }

Same methods

Output::ob_implicit_flush ( Context ctx, bool doFlush ) : void