DkmCompletionRoutine<TResult> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Function which fires when an asynchronous request completes.
generic <typename TResult>
where TResult : value classpublic delegate void DkmCompletionRoutine(TResult result);
public delegate void DkmCompletionRoutine<TResult>(TResult result) where TResult : struct;
type DkmCompletionRoutine<'Result (requires 'Result : struct)> = delegate of 'Result -> unit
Public Delegate Sub DkmCompletionRoutine(Of TResult)(result As TResult)
Type Parameters
- TResult
Type of the result parameter
Parameters
- result
- TResult
Result of the asynchronous operation