3 writes to X509GlobalAcl
WsatConfig (3)
CommandLine\ArgumentsParser.cs (1)
435
config.
X509GlobalAcl
= value.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
Configuration\WsatConfiguration.cs (2)
102
dest.
X509GlobalAcl
= src.X509GlobalAcl;
335
X509GlobalAcl
= wsatConfigProvider.ReadMultiString(WsatKeys.RegistryEntryX509GlobalAcl, DefaultX509GlobalAcl);
14 references to X509GlobalAcl
WsatConfig (14)
CommandLine\ArgumentsParser.cs (2)
439
foreach (string certString in config.
X509GlobalAcl
)
457
config.
X509GlobalAcl
[i] = cert.Thumbprint;
Configuration\WsatConfiguration.cs (12)
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
);
887
if (this.
X509GlobalAcl
== null || this.
X509GlobalAcl
.Length < 1)
894
foreach (string cert in this.
X509GlobalAcl
)