3 instantiations of ShutdownServerResponse
Microsoft.NET.Sdk.Razor.Tool.Tests (1)
ServerProtocol\ServerProtocolTest.cs (1)
109var response = new ShutdownServerResponse(42);
rzc (2)
DefaultRequestDispatcher.cs (1)
341var response = new ShutdownServerResponse(Environment.ProcessId);
ServerProtocol\ShutdownServerResponse.cs (1)
25return new ShutdownServerResponse(serverProcessId);
9 references to ShutdownServerResponse
Microsoft.NET.Sdk.Razor.Tool.Tests (4)
Infrastructure\ServerUtilities.cs (1)
86return ((ShutdownServerResponse)response).ServerProcessId;
ServerProtocol\ServerProtocolTest.cs (3)
109var response = new ShutdownServerResponse(42); 122var typed = (ShutdownServerResponse)read;
rzc (5)
DefaultRequestDispatcher.cs (1)
341var response = new ShutdownServerResponse(Environment.ProcessId);
ServerProtocol\ServerResponse.cs (1)
118return ShutdownServerResponse.Create(reader);
ServerProtocol\ShutdownServerResponse.cs (1)
22public static ShutdownServerResponse Create(BinaryReader reader)
ShutdownCommand.cs (2)
53var response = ((ShutdownServerResponse)await ServerResponse.ReadAsync(client.Stream, Cancelled));