3 types derived from RunApiOutput
dotnet (3)
Commands\Run\Api\RunApiCommand.cs (3)
142public sealed class Error : RunApiOutput 148public sealed class Project : RunApiOutput 154public sealed class RunCommand : RunApiOutput
9 references to RunApiOutput
dotnet (9)
Commands\Run\Api\RunApiCommand.cs (9)
32RunApiOutput output = input.Execute(); 37Respond(new RunApiOutput.Error { Message = ex.Message, Details = ex.ToString() }); 43static void Respond(RunApiOutput message) 57public abstract RunApiOutput Execute(); 64public override RunApiOutput Execute() 73return new RunApiOutput.Project 86public override RunApiOutput Execute() 117return new RunApiOutput.RunCommand 164[JsonSerializable(typeof(RunApiOutput))]