We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d616917 commit 64982a0Copy full SHA for 64982a0
docs/AspDotNetCore.md
@@ -45,7 +45,7 @@ public void ConfigureServices(IServiceCollection services)
45
options.ResultsListAuthorize = request => MyGetUserFunction(request).CanSeeMiniProfiler;
46
// Or, there are async versions available:
47
options.ResultsAuthorizeAsync = async request => (await MyGetUserFunctionAsync(request)).CanSeeMiniProfiler;
48
- options.ResultsAuthorizeListAsync = async request => (await MyGetUserFunctionAsync(request)).CanSeeMiniProfilerLists;
+ options.ResultsListAuthorizeAsync = async request => (await MyGetUserFunctionAsync(request)).CanSeeMiniProfilerLists;
49
50
// (Optional) To control which requests are profiled, use the Func<HttpRequest, bool> option:
51
// (default is everything should be profiled)
0 commit comments