Delegate InspectScopeAsyncFn
- Namespace
- Mokkit.Inspect
- Assembly
- Mokkit.dll
Represents an asynchronous inspect function that operates within a scope and can execute inner functions. This delegate allows for complex inspection scenarios with nested operations.
public delegate Task InspectScopeAsyncFn(ITestHost host, Func<Task> executeInnerFns)Parameters
hostITestHost-
The test host that provides access to configured services and dependencies.
executeInnerFnsFunc<Task>-
A function that executes inner inspection operations within the current scope.
Returns
- Task
-
A task representing the asynchronous scoped inspect operation.