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