This function cancels current activation mostly for testing purposes
Syntax
public static ClientDeactivateSoftwareResponseCode DeactivateSoftware()
Parameters
No parameters.
Return value
Returns the status of operation via ClientDeactivateSoftwareResponseCode enum.
Requirements
File: ItpLibraryNetWrapper.cs
Namespace: ItpLibraryNetClient;
Example
private
void
btnDeactivate_Click(
object
sender, EventArgs e)
{
ClientDeactivateSoftwareResponseCode responseCode = ItpLibraryNetWrapper.DeactivateSoftware();
MessageBox.Show(responseCode.ToString(), Text);
}