3 writes to HttpsPort
WsatConfig (3)
CommandLine\ArgumentsParser.cs (1)
177
config.
HttpsPort
= parsedValue;
Configuration\WsatConfiguration.cs (2)
99
dest.
HttpsPort
= src.HttpsPort;
330
HttpsPort
= wsatConfigProvider.ReadUInt32(WsatKeys.RegistryEntryHttpsPort, DefaultHttpsPort);
13 references to HttpsPort
WsatConfig (13)
Configuration\WsatConfiguration.cs (13)
99
dest.HttpsPort = src.
HttpsPort
;
257
if (this.
HttpsPort
< 1)
557
portString = " -" + CommandLineOption.Port + ":" + this.
HttpsPort
;
789
if (!this.minimalWrite || this.previousConfig == null || this.
HttpsPort
!= this.previousConfig.
HttpsPort
)
791
wsatConfigProvider.WriteUInt32(WsatKeys.RegistryEntryHttpsPort, this.
HttpsPort
);
811
wsatServiceAddress = new WsatServiceAddress(this.previousConfig.
HttpsPort
);
817
wsatServiceAddress = new WsatServiceAddress(this.
HttpsPort
);
828
wsatServiceCertificate = new WsatServiceCertificate(this.previousConfig.X509Certificate, previousConfig.
HttpsPort
);
833
wsatServiceCertificate = new WsatServiceCertificate(this.X509Certificate,
HttpsPort
);
841
firewallWrapper.RemoveHttpsPort((int)this.previousConfig.
HttpsPort
);
845
firewallWrapper.AddHttpsPort((int)this.
HttpsPort
);
865
sb.Append(SR.GetString(SR.ConfigHTTPSPort, this.
HttpsPort
));