this-> DCTest

(Caronte Pcode version 2.0)

Description

int this->DCTest (string key);

Test the key value in the Dante Community. Return 0 if the key is invalid (try three times before give up), 1 if valid.

Example.

Source:

 

CS_ADMIN_SCRIPT this = new CS_ADMIN_SCRIPT($_this);

int Main(CAdminRequest pRequest, CAdminResponse pResponse)
{

this->Print(this->Format("%d",this->DCTest("abcd")));

return 0;

}


 

Out:

0