Files
xHttpService/Configurations/XHttpServiceConfiguration.cs
2024-01-25 04:45:40 +03:30

10 lines
341 B
C#

namespace xHttpService.Configurations {
public partial class XHttpServiceConfiguration {
/// <summary>
/// Determines Http Handler Check SSL or not ...
/// </summary>
/// <value></value>
public bool DisableSSLCheck { get; set; }
public int DefaultClientTimeout { get; set; } = 360;
}
}