Delegate CommandLine.Redactor
Handles redaction of command line arguments and/or options for the ToFormatted(string, bool, bool, Redactor)
method. Return null if no redaction is required for the item or the string to be used instead.
Namespace: Neon.Common
Assembly: Neon.Common.dll
Syntax
public delegate string CommandLine.Redactor(CommandLine commandLine, int index, string item, bool isOption)
Parameters
| Type | Name | Description |
|---|---|---|
| CommandLine | commandLine | The command line. |
| int | index | Zero based index of the item. |
| string | item | The item string. |
| bool | isOption |
|
Returns
| Type | Description |
|---|---|
| string |
|