this-> DeleteDomain

(Caronte Pcode version 2.0)

Description

int this->GetDomain (string domain);

Remove the domain from the local domain database.

Example.

Source:

CS_ADMIN_SCRIPT this = new CS_ADMIN_SCRIPT($_this);

int Main(CAdminRequest pRequest, CAdminResponse pResponse)
{

/// CR_DELETE_DOMAIN

if (this->DeleteDomain("inrete.com") == false)
{
pResponse->Send(pRequest->GetCmd(),300);
return 0;
}

return 0;

}