π Extra Shell Features
The UESH shell provides more features than you can imagine!
Cancellation
// To allow cancellation
CancellationHandlers.AllowCancel()
// To inhibit cancellation
CancellationHandlers.InhibitCancel()Wrapping
{ "jsonbeautify",
new CommandInfo("jsonbeautify", /* Localizable */ "Beautifies the JSON file",
[
new CommandArgumentInfo(
[
new CommandArgumentPart(true, "jsonfile"),
new CommandArgumentPart(true, "output"),
], [], true)
], new JsonBeautifyCommand(), CommandFlags.RedirectionSupported | CommandFlags.Wrappable)
},Key
Action
Aliasing
Last updated