6 writes to KerberosGlobalAcl
WsatUI (6)
Configuration\WsatConfiguration.cs (2)
101dest.KerberosGlobalAcl = src.KerberosGlobalAcl; 334KerberosGlobalAcl = wsatConfigProvider.ReadMultiString(WsatKeys.RegistryEntryKerberosGlobalAcl, DefaultKerberosGlobalAcl);
MMCUI\WsatSecurityModel.cs (4)
121current.KerberosGlobalAcl = new string[] { "" }; 142current.KerberosGlobalAcl = (string[])allowed.ToArray(typeof(string)); 183current.KerberosGlobalAcl = new string[] { "" }; 187current.KerberosGlobalAcl = (string[])kerb.ToArray(typeof(string));
10 references to KerberosGlobalAcl
WsatUI (10)
Configuration\WsatConfiguration.cs (9)
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);
MMCUI\WsatSecurityModel.cs (1)
155System.Collections.ArrayList kerb = new System.Collections.ArrayList(current.KerberosGlobalAcl);