10 instantiations of RejectedBuildResponse
VBCSCompiler (10)
src\roslyn\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\roslyn\src\Compilers\Server\VBCSCompiler\CompilerRequestHandler.cs (3)
123return new RejectedBuildResponse(message); 132return new RejectedBuildResponse(message); 140return new RejectedBuildResponse(message);
src\roslyn\src\Compilers\Shared\BuildProtocol.cs (1)
574return new RejectedBuildResponse(reason);
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (3)
313return new RejectedBuildResponse($"Error writing build request: {e.Message}"); 338response = new RejectedBuildResponse($"Error reading response: {e.Message}"); 344response = new RejectedBuildResponse($"Client disconnected");
3 references to RejectedBuildResponse
VBCSCompiler (3)
src\roslyn\src\Compilers\Server\VBCSCompiler\ClientConnectionHandler.cs (1)
103RejectedBuildResponse r => $"Writing {r.Type} response '{r.Reason}' for {requestId}",
src\roslyn\src\Compilers\Shared\BuildProtocol.cs (2)
351return RejectedBuildResponse.Create(reader); 570public static RejectedBuildResponse Create(BinaryReader reader)