3 overrides of IsClient
dotnet (2)
Installer\Windows\InstallClientElevationContext.cs (1)
23
public override bool
IsClient
=> true;
Installer\Windows\InstallServerElevationContext.cs (1)
17
public override bool
IsClient
=> false;
dotnet.Tests (1)
CommandTests\Workload\List\GivenAnMsiInstallation.cs (1)
80
public override bool
IsClient
=> true;
1 reference to IsClient
dotnet (1)
Installer\Windows\InstallerBase.cs (1)
59
protected bool IsClient => ElevationContext.
IsClient
;