Return Type | Function name | Arguments |
---|---|---|
hzEcode | hzHttpEvent::GetVar | (hzChain&,const hzString&,) |
Declared in file: hzHttpServer.h
Defined in file : hzHttpServer.cpp
Function Logic:
Function body:
hzEcode hzHttpEvent::GetVar (hzChain& Z, const hzString& name) { _hzfunc("hzHttpEvent::GetVar") ; if (!name) return E_ARGUMENT ; if (m_mapStrings.Exists(name)) { Z << m_mapStrings[name] ; return E_OK ; } if (m_mapChains.Exists(name)) { Z << m_mapChains[name] ; return E_OK ; } return E_NOTFOUND ; }