RecoverySettings Constructor

Vista Bridge Library

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

Creates a new instance of this class.

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

Syntax

C#
public RecoverySettings(
	RecoveryCallback callbackDelegate,
	RecoveryData theParameter,
	uint thePingInterval
)
Visual Basic (Declaration)
Public Sub New ( _
	callbackDelegate As RecoveryCallback, _
	theParameter As RecoveryData, _
	thePingInterval As UInteger _
)
Visual C++
public:
RecoverySettings(
	RecoveryCallback^ callbackDelegate, 
	RecoveryData^ theParameter, 
	unsigned int thePingInterval
)

Parameters

callbackDelegate
Type: Microsoft.SDK.Samples.VistaBridge.Library.AppRecoveryRestart..::.RecoveryCallback
The callback method that will be invoked by the system before Windows Error Reporting (WER) terminates the application.
theParameter
Type: Microsoft.SDK.Samples.VistaBridge.Library.AppRecoveryRestart..::.RecoveryData
An optional argument for the callback method.
thePingInterval
Type: System..::.UInt32
The time interval within which the callback method must invoke ApplicationRecoveryInProgress()()() to prevent WER from terminating the application.

See Also