tdaq-develop-2025-02-12
|
Static Public Member Functions | |
static std::string | getOrPostData (cgicc::Cgicc &cgi, const std::string &needle) |
static std::string | postData (cgicc::Cgicc &cgi, const std::string &needle) |
static std::string | getData (cgicc::Cgicc &cgi, const std::string &needle) |
static int | getOrPostDataAsInt (cgicc::Cgicc &cgi, const std::string &needle) |
static int | postDataAsInt (cgicc::Cgicc &cgi, const std::string &needle) |
static int | getDataAsInt (cgicc::Cgicc &cgi, const std::string &needle) |
Definition at line 12 of file CgiDataUtilities.h.
|
static |
getData returns "" if not found get query data format is expected to be: needle1=value1&needle2=value2...
Definition at line 53 of file CgiDataUtilities.cc.
|
static |
getOrPostData return std::string value of needle from get or post std::string post format is expected to be: needle1=value1&needle2=value2... if not found, return ""
Definition at line 11 of file CgiDataUtilities.cc.
|
static |
getPostData return std::string value of needle from post std::string post format is expected to be: needle1=value1&needle2=value2... if not found, return ""
Definition at line 25 of file CgiDataUtilities.cc.