Interface ICapture<T>
- Namespace
- Mokkit
- Assembly
- Mokkit.dll
Read-only contract shared by Mokkit.Capture`1 and Mokkit.Trapture`1. Exposes the captured value once it has been set by the capture system.
public interface ICapture<out T>Type Parameters
T-
The type of the captured value.
Properties
Value
Gets the captured value, or the type default (null for reference types) if no value has been captured yet.
T? Value { get; }Property Value
- T?