| TryValueT Properties |
The TryValueT generic type exposes the following members.
| Name | Description | |
|---|---|---|
| Exception |
Returns the exception captured by this value. When `HasValue = true`,
accessing the property throws `InvalidOperationException`.
| |
| HasValue |
Returns `true` when the `TryValue<T>` object represents a
successfully calculated value
| |
| IsError | ||
| IsSuccess | ||
| Tag | ||
| Value |
Returns the value of `TryValue<T>` when the value is present;
otherwise, throws an exception that was captured
|