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

Used to handle callbacks sent to the Instance.

Syntax

C#
public delegate void Callback(
	Instance sender,
	int error
)
Visual Basic (Declaration)
Public Delegate Sub Callback ( _
	sender As Instance, _
	error As Integer _
)

Parameters

sender
Type: AW..::.Instance
The instance that the event is associated with.
error
Type: System..::.Int32
The error code associated with the callback. Check this to ensure the callback was successful.

See Also