Interface ITestInspectAwaiter
- Namespace
- Mokkit.Inspect
- Assembly
- Mokkit.dll
Provides an awaiter for inspect operations, enabling async/await support for inspect chains. This interface implements the awaiter pattern to allow direct awaiting of Mokkit.Inspect.ITestInspect instances.
public interface ITestInspectAwaiter : INotifyCompletionImplements
Properties
IsCompleted
Gets a value indicating whether the inspect operation has completed.
bool IsCompleted { get; }Property Value
Methods
GetResult()
Gets the result of the inspect operation. This method is called when the await completes.
void GetResult()