Enable Synchronous IO in Azure Function
问题 I am building a HTTPTriggered Azure Function, targeting netcoreapp3.0, that is running a GraphQL .NET server. GraphQL .NET requires that AllowSynchronousIO is set to true , but I can't figure out how to do that for a Azure Function. I have tried implementing my own Startup class that extends FunctionsStartup and added the below code in the Configure method with no luck. builder.Services .AddOptions<KestrelServerOptions>() .Configure<IConfiguration>((settings, configuration) => { settings