Click or drag to resize

IOUtilities.WrapSharingViolationsExceptionsCallback Delegate

Represents the method that handles sharing violation exception calls.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public delegate bool WrapSharingViolationsExceptionsCallback(
	Exception exception,
	int retryCount,
	int maxRetryCount,
	int waitTime
)

Parameters

exception
Type: System.Exception
The exception.
retryCount
Type: System.Int32
The retry count.
maxRetryCount
Type: System.Int32
The maximum retry count.
waitTime
Type: System.Int32
The wait time.

Return Value

Type: Boolean
true if the method must stop the retry loop, false otherwise.
See Also