Added the boolean UseHttp1ForNtlm property to the RecAction section in appsettings.json and RecActionOptions class. This option defaults to false and allows control over using HTTP/1 for NTLM authentication.
8 lines
185 B
C#
8 lines
185 B
C#
namespace ReC.Application.Common.Options;
|
|
|
|
public class RecActionOptions
|
|
{
|
|
public string AddedWho { get; set; } = null!;
|
|
|
|
public bool UseHttp1ForNtlm { get; set; } = false;
|
|
} |