[ the jinxbot project :: home | community forum | bn# | controls | mbncsutil | get the source ]

[This is preliminary documentation and is subject to change.]

Specifies the contract for handlers wishing to listen for account creation events.

Namespace:  BNSharp
Assembly:  BNSharp (in BNSharp.dll) Version: 0.8.8.15 (0.08.08.15)

Syntax

C#
public delegate void AccountCreationEventHandler(
	Object sender,
	AccountCreationEventArgs e
)
Visual Basic (Declaration)
Public Delegate Sub AccountCreationEventHandler ( _
	sender As Object, _
	e As AccountCreationEventArgs _
)
Visual C++
public delegate void AccountCreationEventHandler(
	Object^ sender, 
	AccountCreationEventArgs^ e
)

Parameters

sender
Type: System..::.Object
The object that originated the event.
e
Type: BNSharp..::.AccountCreationEventArgs
The event arguments.

See Also