2 implementations of AttachToTargetAsync
Aspire.Hosting.Browsers (2)
BrowserLogsCdpConnection.cs (1)
127public Task<BrowserLogsAttachToTargetResult> AttachToTargetAsync(string targetId, CancellationToken cancellationToken)
BrowserLogsCdpConnectionMultiplexer.cs (1)
155public Task<BrowserLogsAttachToTargetResult> AttachToTargetAsync(string targetId, CancellationToken cancellationToken)
2 references to AttachToTargetAsync
Aspire.Hosting.Browsers (2)
BrowserLogsCdpConnectionMultiplexer.cs (1)
158return owner._innerConnection.AttachToTargetAsync(targetId, cancellationToken);
BrowserPageSession.cs (1)
261var attachToTargetResult = await _connection.AttachToTargetAsync(_targetId, cancellationToken).ConfigureAwait(false);