2 writes to Parent
dotnet-user-jwts (2)
Commands\ProjectCommandLineApplication.cs (1)
35
var command = new ProjectCommandLineApplication(Reporter) { Name = name,
Parent
= this };
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
83
var command = new CommandLineApplication(throwOnUnexpectedArg) { Name = name,
Parent
= this };
7 references to Parent
dotnet-user-jwts (7)
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
;