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