6 instantiations of BrowserSessionResult
Aspire.Hosting.Browsers (6)
BrowserLogsRunningSession.cs (6)
285BrowserPageSessionCompletionKind.Stopped => new BrowserSessionResult(ExitCode: null, Error: null), 286BrowserPageSessionCompletionKind.PageClosed => new BrowserSessionResult(ExitCode: null, Error: null), 287BrowserPageSessionCompletionKind.BrowserExited => new BrowserSessionResult(ExitCode: null, result.Error), 288BrowserPageSessionCompletionKind.PageCrashed => new BrowserSessionResult(ExitCode: null, result.Error), 289BrowserPageSessionCompletionKind.ConnectionLost => new BrowserSessionResult(ExitCode: null, result.Error), 290_ => new BrowserSessionResult(ExitCode: null, Error: null)
4 references to BrowserSessionResult
Aspire.Hosting.Browsers (4)
BrowserLogsRunningSession.cs (4)
100private Task<BrowserSessionResult>? _completion; 143private Task<BrowserSessionResult> Completion => _completion ?? throw new InvalidOperationException("Session has not been started."); 275private async Task<BrowserSessionResult> MonitorAsync() 303var result = await Completion.ConfigureAwait(false);