3 writes to HttpsPort
WsatUI (3)
Configuration\WsatConfiguration.cs (2)
99
dest.
HttpsPort
= src.HttpsPort;
330
HttpsPort
= wsatConfigProvider.ReadUInt32(WsatKeys.RegistryEntryHttpsPort, DefaultHttpsPort);
MMCUI\WSATControl.cs (1)
250
this.config.
HttpsPort
= shortTemp;
13 references to HttpsPort
WsatUI (13)
Configuration\WsatConfiguration.cs (12)
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
);
MMCUI\WSATControl.cs (1)
218
this.textBoxHttpsPort.Text = this.config.
HttpsPort
.ToString(CultureInfo.InvariantCulture);