[ 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 event handlers that want to handle the client versioning check failure event.

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

Syntax

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

Parameters

sender
Type: System..::.Object
The object that raised the event.
e
Type: BNSharp..::.ClientCheckFailedEventArgs
The event arguments.

See Also