C++
Example: Http.GetDomain method
Demonstrates the
GetDomain method.
C++
#include <CkHttp.h>
void ChilkatSample(void)
{
CkHttp http;
const char *domain = http.getDomain("https://chilkatsoft.com/refdoc/csharp.asp");
std::cout << domain << "\r\n";
// Output: chilkatsoft.com
}