-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Closed
Labels
Source - Docs.msDocs Customer feedback via GitHub IssueDocs Customer feedback via GitHub Issueaspnet-core/svcdoc-bugfundamentals/subsvc
Description
Description
[Enter feedback here]
Inside ConfigureService while implementing IMiddlewareFactory variable name is only _ while _container is being used.
services.AddTransient<IMiddlewareFactory>(_ => { return new SimpleInjectorMiddlewareFactory(_container); });
This should be replaced with
services.AddTransient<IMiddlewareFactory>(_container => { return new SimpleInjectorMiddlewareFactory(_container); });
Page URL
Content source URL
Document ID
ea1db4c0-e8cc-98e8-a235-8c80e9a8f395
Article author
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Source - Docs.msDocs Customer feedback via GitHub IssueDocs Customer feedback via GitHub Issueaspnet-core/svcdoc-bugfundamentals/subsvc
Type
Projects
Status
Done