DeployLX Software Protection System

PanelResultHandler Delegate

Defines a handler for processing the result passed to Return(FormResult) by a child SuperFormPanel.

Syntax

Public Delegate Sub PanelResultHandler ( _
	result As FormResult _
)
public delegate void PanelResultHandler(
	FormResult result
)

Parameters

result
The result returned by the SuperFormPanel.

Remarks

When a child panel is shown with the ShowPanel(SuperFormPanel, PanelResultHandler, Boolean) method of the SuperFormPanel a delegate can be provided to handle the result passed to the call to Return(FormResult). This method is used to simulate a synchronous call to another panel without requiring additional UI threads or message loops.

Assembly:  DeployLX.Licensing.v5 (in DeployLX.Licensing.v5.dll)

See Also