Pchp.Library.Output.ob_flush C# (CSharp) Метод

ob_flush() публичный статический Метод

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
Результат void
        public static void ob_flush(Context ctx)
        {
            ctx.BufferedOutput.Flush();
        }