Class LiveSessionResolutionResult
- Namespace
- DatabentoDotNet.Extensions.Hosting
- Assembly
- DatabentoDotNet.Extensions.Hosting.dll
The outcome of resolving one session: the session, or every reason it could not be.
public sealed class LiveSessionResolutionResult
- Inheritance
-
LiveSessionResolutionResult
- Inherited Members
Properties
Failures
Every failure, each naming its configuration path. Empty on success.
public ImmutableArray<string> Failures { get; }
Property Value
Session
The resolved session, or null when resolution failed.
public ResolvedLiveSession? Session { get; }
Property Value
Succeeded
Whether the session resolved.
[MemberNotNullWhen(true, "Session")]
public bool Succeeded { get; }