This function cancels current activation mostly for testing purposes
Syntax
Public Shared Function DeactivateSoftware() As ClientDeactivateSoftwareResponseCode
Parameters
No parameters.
Return value
Returns the status of operation via ClientDeactivateSoftwareResponseCode enum.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private Sub btnDeactivate_Click(sender As Object, e As EventArgs) Handles btnUnactivate.Click
Dim responseCode As ClientDeactivateSoftwareResponseCode = ItpLibraryNetWrapper.DeactivateSoftware()
MessageBox.Show(responseCode.ToString(), Text)
UpdateActivationControls()
End Sub