3 writes to X509GlobalAcl
WsatUI (3)
Configuration\WsatConfiguration.cs (2)
102dest.X509GlobalAcl = src.X509GlobalAcl; 335X509GlobalAcl = wsatConfigProvider.ReadMultiString(WsatKeys.RegistryEntryX509GlobalAcl, DefaultX509GlobalAcl);
MMCUI\WSATControl.cs (1)
386this.config.X509GlobalAcl = dlg.AllowedCertificates;
12 references to X509GlobalAcl
WsatUI (12)
Configuration\WsatConfiguration.cs (9)
102dest.X509GlobalAcl = src.X509GlobalAcl; 592if (this.X509GlobalAcl != null && this.X509GlobalAcl.Length > 0) 594result += "\"" + this.X509GlobalAcl[0] + "\""; 595for (int i = 1; i < this.X509GlobalAcl.Length; ++i) 597result += ",\"" + this.X509GlobalAcl[i] + "\""; 779if (!this.minimalWrite || this.previousConfig == null || this.X509GlobalAcl != this.previousConfig.X509GlobalAcl) 781wsatConfigProvider.WriteMultiString(WsatKeys.RegistryEntryX509GlobalAcl, this.X509GlobalAcl);
MMCUI\WSATControl.cs (3)
381AcceptedCertificatesForm dlg = new AcceptedCertificatesForm(certificateCollection, config.X509GlobalAcl); 387if (this.config.X509GlobalAcl.Length > 0) 389Utilities.Log("selected allowed client cert [0]: " + this.config.X509GlobalAcl[0]);