Namespace: SeriousBit.Licensing
Assembly: SeriousBit.Licensing (in SeriousBit.Licensing.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
ID 
PrivateKey 
ProductInfo 
Serial 

See Also