Create and return a string consisting of the resource component only. Arguments: None

Return TypeFunction nameArguments
hzStringhzUrl::Resource(void)

Declared in file: hzUrl.h
Defined in file : hzUrl.cpp

Function Logic:

0:START 1:unknown 2:thisCtl thisCtl thisCtl thisCtl S 3:Return S

Function body:

hzString hzUrl::Resource (void)
{
   //  Create and return a string consisting of the resource component only.
   //  
   //  Arguments: None
   //  Returns: Instance of hzString by value being resource part of the URL
   _url_space*     thisCtl ;   //  This URL space
   hzString        S ;         //  Target hzString for resource part of URL
   if (m_addr)
   {
       thisCtl = _urlXlate(m_addr) ;
       S = thisCtl->m_data + thisCtl->m_lenProt + thisCtl->m_lenDom + thisCtl->m_lenPort ;
   }
   return S ;
}