Gets 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 byte[] GetActivationInfo(
	string activationInfoIdentifier
)
Visual Basic
Protected Overridable Function GetActivationInfo ( _
	activationInfoIdentifier As String _
) As Byte()
Visual C++
protected:
virtual array<unsigned char>^ GetActivationInfo(
	String^ activationInfoIdentifier
)

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.

Return Value

A byte data that contains the activation information.

Remarks

The default implementation stores the activation info in some hidden file and registry locations. You can override this method to load activation information form your own storage location. If no activation information is available this method should return null. This method must be overridden together with the SaveActivationInfo(String, array<Byte>[]()[][]) method.

See Also