/// <para>Set the name(path) of the .pfx file. If it is string.Empty Root certificate file will be named as "rootCert.pfx" (and will be saved in proxy dll directory)</para>
/// </summary>
publicstringNamePFXfile
publicstringPfxFilePath
{
get=>namePFXfile;
set
{
namePFXfile=value;
CertificateManager.namePFXfile=this.namePFXfile;
}
get=>CertificateManager.PfxFilePath;
set=>CertificateManager.PfxFilePath=value;
}
publicX509KeyStorageFlagsStorageFlag
...
...
@@ -201,7 +165,7 @@ namespace Titanium.Web.Proxy
set
{
storageFlag=value;
CertificateManager.storageFlag=this.storageFlag;
CertificateManager.StorageFlag=storageFlag;
}
}
...
...
@@ -480,7 +444,8 @@ namespace Titanium.Web.Proxy
if(!endPoint.EnableSsl)
{
thrownewException("Endpoint do not support Https connections");