Checks whether the KeepConnection flag is set.
WebAPI.bdh
WebGetKeepAlive(): boolean;
true if flag is set
false otherwise
dcltrans transaction TWebInit begin write("HttpKeepConnection: "); if WebGetKeepAlive() then write("true"); writeln; else write("false"); writeln; end; end TWebInit;