1 write to config
WsatUI (1)
MMCUI\WSATControl.cs (1)
68config = new WsatConfiguration(machineName, virtualServer, previousConfig, false);
25 references to config
WsatUI (25)
MMCUI\WSATControl.cs (25)
50if (config != null) 52this.oldNetworkSupportEnabledValue = this.config.TransactionBridgeEnabled || this.config.TransactionBridge30Enabled; 69msdtc = config.GetMsdtcWrapper(); 117config.ValidateThrow(); 145config.Save(restart == DialogResult.Yes); 217this.checkBoxEnableNetworkSupport.Checked = this.config.TransactionBridgeEnabled || this.config.TransactionBridge30Enabled; 218this.textBoxHttpsPort.Text = this.config.HttpsPort.ToString(CultureInfo.InvariantCulture); 219this.textBoxEndpointCert.Text = GetDisplayStringForCert(config.X509Certificate); 220this.textBoxDefaultTimeout.Text = this.config.DefaultTimeout.ToString(CultureInfo.InvariantCulture); 221this.textBoxMaxTimeout.Text = this.config.MaxTimeout.ToString(CultureInfo.InvariantCulture); 230this.config.TransactionBridgeEnabled = this.checkBoxEnableNetworkSupport.Checked; 235this.config.MaxTimeout = shortTemp; 245if (this.config.TransactionBridgeEnabled) 250this.config.HttpsPort = shortTemp; 262this.config.DefaultTimeout = shortTemp; 326config.X509Certificate = certContext.GetNewX509Certificate(); 327textBoxEndpointCert.Text = GetDisplayStringForCert(config.X509Certificate); 344if (ACLWrapper.EditACLSecurity(new WsatSecurityModel(Utilities.LocalHostName, config), this.Handle)) 381AcceptedCertificatesForm dlg = new AcceptedCertificatesForm(certificateCollection, config.X509GlobalAcl); 386this.config.X509GlobalAcl = dlg.AllowedCertificates; 387if (this.config.X509GlobalAcl.Length > 0) 389Utilities.Log("selected allowed client cert [0]: " + this.config.X509GlobalAcl[0]); 402TraceOptionsForm form = new TraceOptionsForm(this.config);