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

flush() public static method

Flush the output buffer of the HTTP server. Has no effect on data buffered in output buffers. No value is returned.
public static flush ( Context ctx ) : void
ctx Pchp.Core.Context
return void
        public static void flush(Context ctx)
        {
            //var http_context = ctx.TryGetProperty<HttpContext>();
            //if (http_context != null) http_context.Response.Flush();
            throw new NotImplementedException(); // move to pchplib.web.dll
        }