2 writes to allowedCertificates
WsatUI (2)
MMCUI\AcceptedCertificatesForm.cs (2)
37this.allowedCertificates = allowedCertificates; 100this.allowedCertificates = new string[this.listAllowedCertificates.CheckedIndices.Count];
5 references to allowedCertificates
WsatUI (5)
MMCUI\AcceptedCertificatesForm.cs (5)
77for (int j = 0; j < allowedCertificates.Length; j++) 79if (Utilities.SafeCompare(allowedCertificates[j], store[i].Thumbprint)) 101for (int i = 0; i < allowedCertificates.Length; i++) 103this.allowedCertificates[i] = store[listAllowedCertificates.CheckedIndices[i]].Thumbprint; 117get { return this.allowedCertificates; }