![]()
Represents The Result T to Controls
public readonly struct ResultPrompt<T>
T
Type of return
Represents The Result T to Controls
public ResultPrompt(T value, bool aborted);
value T
The content value.
aborted System.Boolean
If aborted.
T Content result
public T Content { get; }
Control is Aborted. True to aborted; otherwise, false.
public bool IsAborted { get; }
Deconstructs the ResultPrompt<T> into its components.
public void Deconstruct(out T ContentValue, out bool Aborted);
ContentValue T
The value.
Aborted System.Boolean
If aborted.