4 overrides of Type
Microsoft.NET.Sdk.Razor.Tasks (4)
parent\Tool\ServerProtocol\CompletedServerResponse.cs (1)
35
public override ResponseType
Type
=> ResponseType.Completed;
parent\Tool\ServerProtocol\MismatchedVersionServerResponse.cs (1)
8
public override ResponseType
Type
=> ResponseType.MismatchedVersion;
parent\Tool\ServerProtocol\RejectedServerResponse.cs (1)
8
public override ResponseType
Type
=> ResponseType.Rejected;
parent\Tool\ServerProtocol\ShutdownServerResponse.cs (1)
15
public override ResponseType
Type
=> ResponseType.Shutdown;
3 references to Type
Microsoft.NET.Sdk.Razor.Tasks (3)
DotnetToolTask.cs (2)
168
if (response.
Type
== ServerResponse.ResponseType.Completed &&
217
$"Server execution failed with response {response.
Type
}. For more info, check the server log file in the location specified by the RAZORBUILDSERVER_LOG environment variable.");
parent\Tool\ServerProtocol\ServerResponse.cs (1)
53
writer.Write((int)
Type
);