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

ob_flush() public static method

Flushes data from the current level of buffering to the previous one or to the client if the current one is the first one. Applies the filter assigned to the current level (if any). No value is returned.
public static ob_flush ( Context ctx ) : void
ctx Pchp.Core.Context
return void
        public static void ob_flush(Context ctx)
        {
            ctx.BufferedOutput.Flush();
        }