9 references to CompletionReason
VBCSCompiler (9)
src\Compilers\Server\VBCSCompiler\ClientConnectionHandler.cs (3)
32/// in a <see cref="CompletionReason.RequestError"/> 71new CompletionData(CompletionReason.RequestCompleted, shutdownRequested: true), 134_ => new CompletionData(CompletionReason.RequestCompleted, newKeepAlive: CheckForNewKeepAlive(request))
src\Compilers\Server\VBCSCompiler\CompletionData.cs (4)
36internal CompletionReason Reason { get; } 40internal CompletionData(CompletionReason reason, TimeSpan? newKeepAlive = null, bool shutdownRequested = false) 47internal static CompletionData RequestCompleted { get; } = new CompletionData(CompletionReason.RequestCompleted); 49internal static CompletionData RequestError { get; } = new CompletionData(CompletionReason.RequestError);
src\Compilers\Server\VBCSCompiler\ServerDispatcher.cs (2)
287case CompletionReason.RequestCompleted: 303case CompletionReason.RequestError: