Creates a serial


Namespace: SeriousBit.Licensing
Assembly: SeriousBit.Licensing (in SeriousBit.Licensing.dll)

Syntax

Visual Basic (Declaration)
Public Function CreateSerials( _
ByVal startID As Long, _
ByVal endID As Long, _
ByVal expDate As Date, _
ByVal productInfo As String _
) As String()
C#
public string[] CreateSerials(
long startID,
long endID,
DateTime expDate,
string productInfo
)
C++
public:
array<String>^ CreateSerials(
__int64 startID,
__int64 endID,
DateTime expDate,
String productInfo
) sealed
J#
public string[] CreateSerials(
long startID,
long endID,
DateTime expDate,
string productInfo
)
JScript
public function CreateSerials(
startID : long,
endID : long,
expDate : DateTime,
productInfo : String
) : String[]

Parameters

startID
ID from which the serial generation will be started
endID
ID at which the serial generation will be ended. Must be biger than startID
expDate
Expiration date
productInfo
Any string which will be included into serial. Maximum length allowed is 13 chars

See Also