4 implementations of DebugEndpoint
Aspire.Hosting.Browsers.Tests (4)
BrowserLogsRunningSessionTests.cs (1)
111
public Uri
DebugEndpoint
{ get; } = new("ws://127.0.0.1/devtools/browser/test");
BrowserLogsSessionManagerTests.cs (1)
651
public Uri
DebugEndpoint
{ get; } = new("ws://127.0.0.1/devtools/browser/test");
BrowserPageSessionTests.cs (1)
355
public Uri
DebugEndpoint
{ get; } = new("ws://127.0.0.1/devtools/browser/test");
src\Aspire.Hosting.Browsers\BrowserHost.cs (1)
29
public Uri?
DebugEndpoint
{ get; } = debugEndpoint;
3 references to DebugEndpoint
Aspire.Hosting.Browsers.Tests (3)
BrowserLogsSessionManagerTests.cs (1)
200
Assert.Equal(browserEndpoint, lease.Host.
DebugEndpoint
);
src\Aspire.Hosting.Browsers\BrowserHostRegistry.cs (1)
87
_logger.LogInformation("Reusing tracked browser host '{BrowserExecutable}' at '{Endpoint}'. Active leases: {ReferenceCount}.", identity.ExecutablePath, FormatDebugEndpoint(entry.Host.
DebugEndpoint
), entry.ReferenceCount);
src\Aspire.Hosting.Browsers\BrowserLogsRunningSession.cs (1)
232
_browserEndpoint = browserHost.
DebugEndpoint
;