3 writes to HttpsPort
WsatUI (3)
Configuration\WsatConfiguration.cs (2)
99dest.HttpsPort = src.HttpsPort; 330HttpsPort = wsatConfigProvider.ReadUInt32(WsatKeys.RegistryEntryHttpsPort, DefaultHttpsPort);
MMCUI\WSATControl.cs (1)
250this.config.HttpsPort = shortTemp;
13 references to HttpsPort
WsatUI (13)
Configuration\WsatConfiguration.cs (12)
99dest.HttpsPort = src.HttpsPort; 257if (this.HttpsPort < 1) 557portString = " -" + CommandLineOption.Port + ":" + this.HttpsPort; 789if (!this.minimalWrite || this.previousConfig == null || this.HttpsPort != this.previousConfig.HttpsPort) 791wsatConfigProvider.WriteUInt32(WsatKeys.RegistryEntryHttpsPort, this.HttpsPort); 811wsatServiceAddress = new WsatServiceAddress(this.previousConfig.HttpsPort); 817wsatServiceAddress = new WsatServiceAddress(this.HttpsPort); 828wsatServiceCertificate = new WsatServiceCertificate(this.previousConfig.X509Certificate, previousConfig.HttpsPort); 833wsatServiceCertificate = new WsatServiceCertificate(this.X509Certificate, HttpsPort); 841firewallWrapper.RemoveHttpsPort((int)this.previousConfig.HttpsPort); 845firewallWrapper.AddHttpsPort((int)this.HttpsPort);
MMCUI\WSATControl.cs (1)
218this.textBoxHttpsPort.Text = this.config.HttpsPort.ToString(CultureInfo.InvariantCulture);