Table of Contents

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 : INotifyCompletion

Implements

Properties

IsCompleted

Gets a value indicating whether the inspect operation has completed.

bool IsCompleted { get; }

Property Value

bool

Methods

GetResult()

Gets the result of the inspect operation. This method is called when the await completes.

void GetResult()