Table of Contents

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

ImmutableArray<string>

Session

The resolved session, or null when resolution failed.

public ResolvedLiveSession? Session { get; }

Property Value

ResolvedLiveSession

Succeeded

Whether the session resolved.

[MemberNotNullWhen(true, "Session")]
public bool Succeeded { get; }

Property Value

bool