5 instantiations of CompletedServerResponse
Microsoft.NET.Sdk.Razor.Tool.Tests (3)
DefaultRequestDispatcherTest.cs (1)
14private static ServerResponse EmptyServerResponse => new CompletedServerResponse(
ServerLifecycleTest.cs (1)
15private static ServerResponse EmptyServerResponse => new CompletedServerResponse(
ServerProtocol\ServerProtocolTest.cs (1)
14var response = new CompletedServerResponse(42, utf8output: false, output: "a string", error: "an error");
rzc (2)
CompilerHost.cs (1)
68return new CompletedServerResponse(exitCode, utf8output: false, output, error);
ServerProtocol\CompletedServerResponse.cs (1)
44return new CompletedServerResponse(returnCode, utf8Output, output, errorOutput);
7 references to CompletedServerResponse
Microsoft.NET.Sdk.Razor.Tool.Tests (5)
ServerLifecycleTest.cs (2)
153Assert.Equal(0, ((CompletedServerResponse)response).ReturnCode); 202Assert.Equal(0, ((CompletedServerResponse)response).ReturnCode);
ServerProtocol\ServerProtocolTest.cs (3)
14var response = new CompletedServerResponse(42, utf8output: false, output: "a string", error: "an error"); 23var result = (CompletedServerResponse)await ServerResponse.ReadAsync(memoryStream, CancellationToken.None);
rzc (2)
ServerProtocol\CompletedServerResponse.cs (1)
37public static CompletedServerResponse Create(BinaryReader reader)
ServerProtocol\ServerResponse.cs (1)
114return CompletedServerResponse.Create(reader);