Occurs when a serial is created


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

Syntax

Visual Basic (Declaration)
Public Event SerialCreated As SerialCreatedEventHandler
C#
public event SerialCreatedEventHandler SerialCreated
C++
public:
virtual event SerialCreatedEventHandler SerialCreated {
void add(SerialCreatedEventHandler value) sealed ;
void remove(SerialCreatedEventHandler value) sealed ;
}
J#
/** event */
public final void add_SerialCreated(SerialCreatedEventHandler value);

/** event */
public final void remove_SerialCreated(SerialCreatedEventHandler value);
JScript
JScript suports the use of events, but not the declaration of new ones.

Event Data

The event handler receives an argument of type SerialCreatedEventArgs containing data related to this event. The following SerialCreatedEventArgs properties provide information specific to this event.

PropertyDescription
IDContains the ID of the created serial
PrivateKeyThe private key used to generate the serial
ProductInfoContains the ProductInfo field of the created serial
SerialContains the created serial

See Also