11 instantiations of RejectedBuildResponse
VBCSCompiler (10)
BuildProtocol.cs (1)
525return new RejectedBuildResponse(reason);
BuildServerConnection.cs (3)
268return new RejectedBuildResponse($"Error writing build request: {e.Message}"); 293response = new RejectedBuildResponse($"Error reading response: {e.Message}"); 299response = new RejectedBuildResponse($"Client disconnected");
ClientConnectionHandler.cs (3)
80new RejectedBuildResponse("Compilation not allowed at this time"), 90new RejectedBuildResponse("Not enough resources to accept connection"), 142response = new RejectedBuildResponse($"Exception during compilation: {ex.Message}");
CompilerRequestHandler.cs (3)
119return new RejectedBuildResponse(message); 128return new RejectedBuildResponse(message); 136return new RejectedBuildResponse(message);
VBCSCompiler.UnitTests (1)
BuildClientTests.cs (1)
168return Task.FromResult<BuildResponse>(new RejectedBuildResponse(""));
5 references to RejectedBuildResponse
VBCSCompiler (3)
BuildProtocol.cs (2)
369return RejectedBuildResponse.Create(reader); 521public static RejectedBuildResponse Create(BinaryReader reader)
ClientConnectionHandler.cs (1)
103RejectedBuildResponse r => $"Writing {r.Type} response '{r.Reason}' for {requestId}",
VBCSCompiler.UnitTests (2)
ClientConnectionHandlerTests.cs (1)
108Assert.True(response is RejectedBuildResponse);
VBCSCompilerServerTests.cs (1)
379Assert.True(response is RejectedBuildResponse);