This function activates the protected software on the computer. In other words this function registers client's computer on the service and starts trial period if it is enabled.
Syntax
public static ClientActivationResponseCode ActivateSoftware()
Parameters
no parameters.
Return value
Returns the status of operation via ClientActivationResponseCode enum.
Requirements
File: ItpLibraryNetWrapper.cs
Namespace: ItpLibraryNetClient;
Example
private
void
btnActivate_Click(
object
sender, EventArgs e)
{
ClientActivationResponseCode responseCode = ItpLibraryNetWrapper.ActivateSoftware();
MessageBox.Show(responseCode.ToString(), Text);
}