Open namighajiyev opened 2 months ago
AutoWrapIgnore attribute doesn't work with FastEndpoints. I tried as shown below.
[AutoWrapIgnore(ShouldLogRequestData = false)] public override void Configure() { Get(DowloadRequest.Route); Summary(s => { }); } [AutoWrapIgnore(ShouldLogRequestData = false)] public override async Task HandleAsync( DowloadRequest request, CancellationToken cancellationToken) { }
AutoWrapIgnore attribute doesn't work with FastEndpoints. I tried as shown below.