this->SetRebootConfig

(Caronte Pcode version 2.0)

Description

void this->SetRebootConfig(int reboot);

Use the reboot value for specify when the config needs to be rebooted or not. 0 = false ; 1 = true

Example.

Source:

CS_ADMIN_SCRIPT this = new CS_ADMIN_SCRIPT($_this);

int Main(CAdminRequest pRequest, CAdminResponse pResponse)
{

this->SetRebootConfig(1);


return 0;

}