10 instantiations of RejectedBuildResponse
VBCSCompiler (10)
src\Compilers\Core\CommandLine\BuildProtocol.cs (1)
505return new RejectedBuildResponse(reason);
src\Compilers\Server\VBCSCompiler\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}");
src\Compilers\Server\VBCSCompiler\CompilerRequestHandler.cs (3)
120return new RejectedBuildResponse(message); 129return new RejectedBuildResponse(message); 137return new RejectedBuildResponse(message);
src\Compilers\Shared\BuildServerConnection.cs (3)
292return new RejectedBuildResponse($"Error writing build request: {e.Message}"); 317response = new RejectedBuildResponse($"Error reading response: {e.Message}"); 323response = new RejectedBuildResponse($"Client disconnected");
3 references to RejectedBuildResponse
VBCSCompiler (3)
src\Compilers\Core\CommandLine\BuildProtocol.cs (2)
349return RejectedBuildResponse.Create(reader); 501public static RejectedBuildResponse Create(BinaryReader reader)
src\Compilers\Server\VBCSCompiler\ClientConnectionHandler.cs (1)
103RejectedBuildResponse r => $"Writing {r.Type} response '{r.Reason}' for {requestId}",