ApplicationRecoveryFinished Method

Vista Bridge Library

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

Called by an application's RecoveryCallback method to indicate that the recovery work is complete.

Namespace:  Microsoft.SDK.Samples.VistaBridge.Library.AppRecoveryRestart
Assembly:  VistaBridgeLibrary (in VistaBridgeLibrary.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public static void ApplicationRecoveryFinished(
	bool success
)
Visual Basic (Declaration)
Public Shared Sub ApplicationRecoveryFinished ( _
	success As Boolean _
)
Visual C++
public:
static void ApplicationRecoveryFinished(
	bool success
)

Parameters

success
Type: System..::.Boolean
Specifies whether the program was able to complete its recovery work before terminating.

Remarks

This should be the last call made by the RecoveryCallback method because Windows Error Reporting will terminate the application after this method is invoked.

See Also