4 writes to KerberosGlobalAcl
WsatConfig (4)
CommandLine\ArgumentsParser.cs (2)
361
config.
KerberosGlobalAcl
= value.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
380
config.
KerberosGlobalAcl
= validAccounts.ToArray();
Configuration\WsatConfiguration.cs (2)
101
dest.
KerberosGlobalAcl
= src.KerberosGlobalAcl;
334
KerberosGlobalAcl
= wsatConfigProvider.ReadMultiString(WsatKeys.RegistryEntryKerberosGlobalAcl, DefaultKerberosGlobalAcl);
13 references to KerberosGlobalAcl
WsatConfig (13)
CommandLine\ArgumentsParser.cs (1)
362
List<string> acceptedAccounts = new List<string>(config.
KerberosGlobalAcl
);
Configuration\WsatConfiguration.cs (12)
101
dest.KerberosGlobalAcl = src.
KerberosGlobalAcl
;
606
if (this.
KerberosGlobalAcl
!= null && this.
KerberosGlobalAcl
.Length > 0)
608
result += "\"" + this.
KerberosGlobalAcl
[0] + "\"";
609
for (int i = 1; i < this.
KerberosGlobalAcl
.Length; ++i)
611
result += ",\"" + this.
KerberosGlobalAcl
[i] + "\"";
794
if (!this.minimalWrite || this.previousConfig == null || this.
KerberosGlobalAcl
!= this.previousConfig.
KerberosGlobalAcl
)
796
wsatConfigProvider.WriteMultiString(WsatKeys.RegistryEntryKerberosGlobalAcl, this.
KerberosGlobalAcl
);
869
if (this.
KerberosGlobalAcl
== null || this.
KerberosGlobalAcl
.Length < 1)
876
foreach (string ace in this.
KerberosGlobalAcl
)