4 instantiations of RejectedBuildResponse
Replay (4)
src\Compilers\Core\CommandLine\BuildProtocol.cs (1)
505return new RejectedBuildResponse(reason);
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");
2 references to RejectedBuildResponse
Replay (2)
src\Compilers\Core\CommandLine\BuildProtocol.cs (2)
349return RejectedBuildResponse.Create(reader); 501public static RejectedBuildResponse Create(BinaryReader reader)