1 instantiation of BrowserLogsCommandAck
Aspire.Hosting.Browsers.Tests (1)
src\Aspire.Hosting.Browsers\BrowserLogsCdpProtocol.cs (1)
406public static BrowserLogsCommandAck Instance { get; } = new();
24 references to BrowserLogsCommandAck
Aspire.Hosting.Browsers.Tests (24)
BrowserLogsCdpConnectionTests.cs (6)
442public Task<BrowserLogsCommandAck> CloseTargetAsync(string targetId, CancellationToken cancellationToken) 444return Task.FromResult(BrowserLogsCommandAck.Instance); 447public Task<BrowserLogsCommandAck> EnableTargetDiscoveryAsync(CancellationToken cancellationToken) 449return Task.FromResult(BrowserLogsCommandAck.Instance); 462public Task<BrowserLogsCommandAck> NavigateAsync(string sessionId, Uri url, CancellationToken cancellationToken) 464return Task.FromResult(BrowserLogsCommandAck.Instance);
BrowserPageSessionTests.cs (6)
428public Task<BrowserLogsCommandAck> CloseTargetAsync(string targetId, CancellationToken cancellationToken) 431return Task.FromResult(BrowserLogsCommandAck.Instance); 434public Task<BrowserLogsCommandAck> EnableTargetDiscoveryAsync(CancellationToken cancellationToken) 437return Task.FromResult(BrowserLogsCommandAck.Instance); 447public Task<BrowserLogsCommandAck> NavigateAsync(string sessionId, Uri url, CancellationToken cancellationToken) 450return Task.FromResult(BrowserLogsCommandAck.Instance);
src\Aspire.Hosting.Browsers\BrowserLogsCdpConnection.cs (6)
22Task<BrowserLogsCommandAck> CloseTargetAsync(string targetId, CancellationToken cancellationToken); 24Task<BrowserLogsCommandAck> EnableTargetDiscoveryAsync(CancellationToken cancellationToken); 30Task<BrowserLogsCommandAck> NavigateAsync(string sessionId, Uri url, CancellationToken cancellationToken); 141public Task<BrowserLogsCommandAck> CloseTargetAsync(string targetId, CancellationToken cancellationToken) 151public Task<BrowserLogsCommandAck> EnableTargetDiscoveryAsync(CancellationToken cancellationToken) 191public Task<BrowserLogsCommandAck> NavigateAsync(string sessionId, Uri url, CancellationToken cancellationToken)
src\Aspire.Hosting.Browsers\BrowserLogsCdpConnectionMultiplexer.cs (3)
161public Task<BrowserLogsCommandAck> CloseTargetAsync(string targetId, CancellationToken cancellationToken) 167public Task<BrowserLogsCommandAck> EnableTargetDiscoveryAsync(CancellationToken cancellationToken) 185public Task<BrowserLogsCommandAck> NavigateAsync(string sessionId, Uri url, CancellationToken cancellationToken)
src\Aspire.Hosting.Browsers\BrowserLogsCdpProtocol.cs (3)
189internal static BrowserLogsCommandAck ParseCommandAckResponse(ReadOnlySpan<byte> framePayload) 194return BrowserLogsCommandAck.Instance; 406public static BrowserLogsCommandAck Instance { get; } = new();