9 references to PreActions
System.CommandLine (9)
Invocation\InvocationPipeline.cs (6)
21if (parseResult.PreActions is not null) 23for (int i = 0; i < parseResult.PreActions.Count; i++) 25var action = parseResult.PreActions[i]; 104if (parseResult.PreActions is not null) 106for (var i = 0; i < parseResult.PreActions.Count; i++) 108if (parseResult.PreActions[i] is SynchronousCommandLineAction syncPreAction)
ParseResult.cs (3)
308else if (PreActions is not null) 310for (var i = 0; i < PreActions.Count; i++) 312var action = PreActions[i];