2 instantiations of IpcResponse
Microsoft.Diagnostics.NETCore.Client (2)
DiagnosticsIpc\IpcClient.cs (2)
46return new IpcResponse(response, Release(ref stream)); 85return new IpcResponse(response, Release(ref stream));
22 references to IpcResponse
Microsoft.Diagnostics.NETCore.Client (22)
DiagnosticsClient\DiagnosticsClient.cs (11)
318using IpcResponse response = IpcClient.SendMessageGetContinuation(_endpoint, message); 328using IpcResponse response = await IpcClient.SendMessageGetContinuationAsync(_endpoint, message, token).ConfigureAwait(false); 553using IpcResponse response = IpcClient.SendMessageGetContinuation(_endpoint, request); 574using IpcResponse response = await IpcClient.SendMessageGetContinuationAsync(_endpoint, request, token).ConfigureAwait(false); 581using IpcResponse response2 = IpcClient.SendMessageGetContinuation(_endpoint, request); 588using IpcResponse response2 = await IpcClient.SendMessageGetContinuationAsync(_endpoint, request, token).ConfigureAwait(false); 595using IpcResponse response2 = IpcClient.SendMessageGetContinuation(_endpoint, request); 602using IpcResponse response2 = await IpcClient.SendMessageGetContinuationAsync(_endpoint, request, token).ConfigureAwait(false); 831private static ProcessInfo GetProcessInfoFromResponse(IpcResponse response, string operationName) 838private static ProcessInfo TryGetProcessInfo2FromResponse(IpcResponse response, string operationName) 848private static ProcessInfo TryGetProcessInfo3FromResponse(IpcResponse response, string operationName)
DiagnosticsClient\EventPipeSession.cs (5)
31private readonly IpcResponse _response; 33private EventPipeSession(IpcEndpoint endpoint, IpcResponse response, ulong sessionId) 45IpcResponse? response = IpcClient.SendMessageGetContinuation(endpoint, requestMessage); 52IpcResponse? response = await IpcClient.SendMessageGetContinuationAsync(endpoint, requestMessage, cancellationToken).ConfigureAwait(false); 121private static EventPipeSession CreateSessionFromResponse(IpcEndpoint endpoint, ref IpcResponse? response, string operationName)
DiagnosticsIpc\IpcClient.cs (6)
25using IpcResponse response = SendMessageGetContinuation(endpoint, message); 34/// <returns>An <see cref="IpcResponse"/> containing the response message and continuation stream.</returns> 35public static IpcResponse SendMessageGetContinuation(IpcEndpoint endpoint, IpcMessage message) 63using IpcResponse response = await SendMessageGetContinuationAsync(endpoint, message, cancellationToken).ConfigureAwait(false); 73/// <returns>An <see cref="IpcResponse"/> containing the response message and continuation stream.</returns> 74public static async Task<IpcResponse> SendMessageGetContinuationAsync(IpcEndpoint endpoint, IpcMessage message, CancellationToken cancellationToken)