This function cancels current registration and unbinds computer from license code. This function can be used for example when license code is allowed on one computer and you need to move the code to another computer. The function unbinds current computer from license code so software can be registered on another computer without problems
Syntax
Public Shared Function DeregisterSoftware() As ClientDeregisterSoftwareResponseCode
Parameters
No parameters.
Return value
Returns the status of operation via ClientDeregisterSoftwareResponseCode enum.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private Sub btnDeregister_Click(sender As Object, e As EventArgs) Handles btnUnregister.Click
Dim responseCode As ClientDeregisterSoftwareResponseCode = ItpLibraryNetWrapper.DeregisterSoftware()
MessageBox.Show(responseCode.ToString(), Text)
InitItpControls()
End Sub