1 instantiation of IpcEndpointInfo
Microsoft.Diagnostics.NETCore.Client (1)
ReversedServer\ReversedDiagnosticsServer.cs (1)
307
_endpointInfos.Add(new
IpcEndpointInfo
(endpoint, pid, runtimeCookie));
13 references to IpcEndpointInfo
Microsoft.Diagnostics.NETCore.Client (13)
DiagnosticsClient\DiagnosticsClientConnector.cs (1)
71
IpcEndpointInfo
endpointInfo = await server.AcceptAsync(ct).ConfigureAwait(false);
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (7)
162
private
IpcEndpointInfo
_netServerEndpointInfo;
175
protected
IpcEndpointInfo
NetServerEndpointInfo
188
NetServerEndpointInfo = default(
IpcEndpointInfo
);
200
_netServerEndpointInfo = default(
IpcEndpointInfo
);
214
protected abstract Task<
IpcEndpointInfo
> AcceptAsyncImpl(CancellationToken token);
328
protected override Task<
IpcEndpointInfo
> AcceptAsyncImpl(CancellationToken token) => _tcpServer.AcceptAsync(token);
386
protected override Task<
IpcEndpointInfo
> AcceptAsyncImpl(CancellationToken token) => _webSocketServer.AcceptAsync(token);
ReversedServer\ReversedDiagnosticsServer.cs (5)
27
private readonly HandleableCollection<
IpcEndpointInfo
> _endpointInfos = new();
186
/// <returns>An <see cref="
IpcEndpointInfo
"/> value that contains information about the new runtime instance connection.</returns>
187
public
IpcEndpointInfo
Accept(TimeSpan timeout)
199
/// <returns>A task that completes with a <see cref="
IpcEndpointInfo
"/> value that contains information about the new runtime instance connection.</returns>
200
public Task<
IpcEndpointInfo
> AcceptAsync(CancellationToken token)