CreateActivationRequestCertificate
This function is designed for activation process by e-mail. It creates activation request certificate (into filePathName) which should be sent into our automatic e-mail processing address. The service sends activation response certificate in reply

Syntax
Public Shared Function CreateActivationRequestCertificate(filePathName As String) As ClientActivationRequestResponseCode

Parameters
String filePathName - file name where request certificate will be stored.

Return value
Returns the status of operation via ClientActivationRequestResponseCode enum.

Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;

Example
Private Sub btnSaveCertificate_Click(sender As Object, e As EventArgs) Handles btnSaveCertificate.Click
    Using saveFileDialog As SaveFileDialog = FileDialogs.CreateSaveFileDialog(_certificateName)
        If saveFileDialog.ShowDialog() <> DialogResult.OK Then
            Return
        End If
 
        Dim responseCode As ClientActivationRequestResponseCode = ItpLibraryNetWrapper.CreateActivationRequestCertificate(saveFileDialog.FileName)
        MessageBox.Show(responseCode.ToString(), Text)
    End Using
End Sub
Copyright 2006 - 2024 by IntelliProtector - Software Protection and Licensing Services