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