Saves activation information associated with the current license. This activation information is created when activating or unlocking a license key is passed to the SaveActivationInfo(String, array<Byte>[]()[][]) method.

Namespace: SimpleMode.SecureLicenseManager
Assembly: SimpleMode.SecureLicenseManager (in SimpleMode.SecureLicenseManager.dll) Version: 1.5.5120.0 (1.5.5120.0)

Syntax

C#
protected virtual void SaveActivationInfo(
	string activationInfoIdentifier,
	byte[] activationInfoBytes
)
Visual Basic
Protected Overridable Sub SaveActivationInfo ( _
	activationInfoIdentifier As String, _
	activationInfoBytes As Byte() _
)
Visual C++
protected:
virtual void SaveActivationInfo(
	String^ activationInfoIdentifier, 
	array<unsigned char>^ activationInfoBytes
)

Parameters

activationInfoIdentifier
Type: System..::..String
A string that can be used to identify the activation information. This parameter can safely be ignored and is only provided to assist in uniquely identifying the activation information for a particular license.
activationInfoBytes
Type: array<System..::..Byte>[]()[][]
The byte representation of the activation information to save.

Remarks

The default implementation stores the activation info in some hidden file and registry locations. You can override this method to save activation information in your own storage location. This method must be overridden together with the GetActivationInfo(String) method.

See Also