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