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