2 writes to Parent
dotnet-openapi (2)
Commands\BaseCommand.cs (1)
36
Parent
= parent;
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
83
var command = new CommandLineApplication(throwOnUnexpectedArg) { Name = name,
Parent
= this };
13 references to Parent
dotnet-openapi (13)
Commands\AddCommand.cs (1)
21
internal new Application Parent => (Application)base.
Parent
;
Commands\BaseCommand.cs (5)
44
if (
Parent
is Application application)
50
WorkingDirectory = ((Application)
Parent
.
Parent
).WorkingDirectory;
86
var parent =
Parent
;
89
parent = parent.
Parent
;
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (7)
71
while (rootNode.
Parent
!= null)
73
rootNode = rootNode.
Parent
;
431
for (var cmd = this; cmd != null; cmd = cmd.
Parent
)
442
for (var cmd = this; cmd != null; cmd = cmd.
Parent
)
549
for (var cmd = this; cmd != null; cmd = cmd.
Parent
)
566
while (rootCmd.
Parent
!= null)
568
rootCmd = rootCmd.
Parent
;