RetryDoT Method (FuncT, Action)
|
Alterian Email Manager 6.2.3 SDK Help File Namespace:
DMLibraryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic static T Do<T>(
Func<T> action,
Action beforeRetry = null
)
Public Shared Function Do(Of T) (
action As Func(Of T),
Optional beforeRetry As Action = Nothing
) As T
public:
generic<typename T>
static T Do(
Func<T>^ action,
Action^ beforeRetry = nullptr
)
static member Do :
action : Func<'T> *
?beforeRetry : Action
(* Defaults:
let _beforeRetry = defaultArg beforeRetry null
*)
-> 'T
JavaScript does not support generic types or methods.
Parameters
- action
- Type: SystemFuncT
- beforeRetry (Optional)
- Type: SystemAction
Type Parameters
- T
Return Value
Type:
T
See Also