FCExporter.flushStatus C# (CSharp) Method

flushStatus() private method

Flushes exported status message/or any status message to the chart or the output stream. It parses the exported status through parser function parseExportedStatus, builds proper response string using buildResponse function and flushes the response string to the output stream and terminates the program.
private flushStatus ( object filename, Hashtable meta ) : void
filename object Name of the exported file or false on failure
meta Hashtable Image's meta data
return void
    private void flushStatus(object filename, Hashtable meta)
    {
        flushStatus(filename, meta, "");
    }

Same methods

FCExporter::flushStatus ( object filename, Hashtable meta, string msg ) : void