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)
71IpcEndpointInfo endpointInfo = await server.AcceptAsync(ct).ConfigureAwait(false);
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (7)
162private IpcEndpointInfo _netServerEndpointInfo; 175protected IpcEndpointInfo NetServerEndpointInfo 188NetServerEndpointInfo = default(IpcEndpointInfo); 200_netServerEndpointInfo = default(IpcEndpointInfo); 214protected abstract Task<IpcEndpointInfo> AcceptAsyncImpl(CancellationToken token); 328protected override Task<IpcEndpointInfo> AcceptAsyncImpl(CancellationToken token) => _tcpServer.AcceptAsync(token); 386protected override Task<IpcEndpointInfo> AcceptAsyncImpl(CancellationToken token) => _webSocketServer.AcceptAsync(token);
ReversedServer\ReversedDiagnosticsServer.cs (5)
27private readonly HandleableCollection<IpcEndpointInfo> _endpointInfos = new(); 186/// <returns>An <see cref="IpcEndpointInfo"/> value that contains information about the new runtime instance connection.</returns> 187public 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> 200public Task<IpcEndpointInfo> AcceptAsync(CancellationToken token)