Click or drag to resize

IOUtilitiesWrapSharingViolationsT Method (FuncT, IOUtilitiesWrapSharingViolationsExceptionsCallbackT, Int32, Int32)

Calls IO code under a sharing violations handling system.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static T WrapSharingViolations<T>(
	Func<T> func,
	IOUtilitiesWrapSharingViolationsExceptionsCallback<T> exceptionsCallback = null,
	int maxRetryCount = 10,
	int waitTime = 100
)

Parameters

func
Type: SystemFuncT
The function.
exceptionsCallback (Optional)
Type: callback.ShellBoost.Core.UtilitiesIOUtilitiesWrapSharingViolationsExceptionsCallbackT
The exceptions callback.
maxRetryCount (Optional)
Type: SystemInt32
The maximum retry count.
waitTime (Optional)
Type: SystemInt32
The wait time.

Type Parameters

T
The return type.

Return Value

Type: T
The result of the func() call.
Exceptions
ExceptionCondition
ArgumentNullExceptionfunc is null.
See Also