Interface IOptional
- Namespace
- Auth0.ManagementApi.Core
- Assembly
- Auth0.ManagementApi.dll
Non-generic interface for Optional types to enable reflection-free checks.
public interface IOptional
- Extension Methods
Properties
IsDefined
Returns true if the value is defined (set), even if the value is null.
bool IsDefined { get; }
Property Value
Methods
GetBoxedValue()
Gets the boxed value. Returns null if undefined or if the value is null.
object? GetBoxedValue()