OptionalValue<T> constructor
An optional value returned by some methods like interceptors. It can be used to indicate that the result is optional and if default is returned, the operation should continue normally.
public OptionalValue(T value)
| parameter | description |
|---|---|
| T | The value type. |
| value | The value. |
See Also
- struct OptionalValue<T>