3 writes to HttpsPort
WsatConfig (3)
CommandLine\ArgumentsParser.cs (1)
177config.HttpsPort = parsedValue;
Configuration\WsatConfiguration.cs (2)
99dest.HttpsPort = src.HttpsPort; 330HttpsPort = wsatConfigProvider.ReadUInt32(WsatKeys.RegistryEntryHttpsPort, DefaultHttpsPort);
13 references to HttpsPort
WsatConfig (13)
Configuration\WsatConfiguration.cs (13)
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); 865sb.Append(SR.GetString(SR.ConfigHTTPSPort, this.HttpsPort));