I am looking to use middle ware to decrypt the http request coming to azure function in start up.cs class. below is my start up class
public class Startup : FunctionsStartup { public override void Configure(IFunctionsHostBuilder builder) { if (builder == null) throw new ArgumentNullException(null, new Exception()); ConfigureServices(builder.Services).BuildServiceProvider(true); }
IFunctionsHostBuilder does not contain any method like builder.UseMiddleware? So not getting idea how to do that. can somebody help