Sha256: e8df89259a723dbf57c8b4cbe9b09e678527496c2ba10a12ceb9763ee9f89123
Contents?: true
Size: 481 Bytes
Versions: 3
Compression:
Stored size: 481 Bytes
Contents
#pragma once #include "common/RhoStd.h" namespace rho { namespace net { class URI { String m_strUrl; public: URI(const String& strUrl); static void urlEncode(const String& fullPath, String& strRes); String getPath(); String getQueryString(); String getScheme(); String getPathSpecificPart(); struct CParsedCookie { String strAuth; String strSession; }; static void parseCookie(const char* szCookie, CParsedCookie& cookie); }; } }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rhodes-1.4.2 | platform/shared/net/URI.h |
rhodes-1.4.1 | platform/shared/net/URI.h |
rhodes-1.4.0 | platform/shared/net/URI.h |