what is the replacement method for TryGetValue in Microsoft.Azure.Functions.Worker.Http
I am working on migrate from .net6 to .net8. the Previously project is using ‘Microsoft.AspNetCore.Http’; I had read the documentation and seems any http related should now needs to use Microsoft.Azure.Functions.Worker.Http.I am replace all the ‘httprequest’ to ‘httprequestdata’, but for ‘request.Headers.TryGetValue’ I didn’t find the replacement method for the ‘httprequestdata’, could anyone help?