Click or drag to resize
IBusyViewShowBusy Method
Indicates to the user that the application is busy.

Namespace: VirtualRadar.Interface.View
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Object ShowBusy(
	bool isBusy,
	Object previousState
)

Parameters

isBusy
Type: SystemBoolean
previousState
Type: SystemObject

Return Value

Type: Object
An object that reflects the state on display to the user before the call was made.
Remarks
The intent is that this call is always made as a pair within a try / finally block. The try block calls ShowBusy(true, null) and stores the result. The finally block always calls (false, obj) where obj is the result of the first call.
See Also