We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f2b398 + a0031f6 commit d83cb8cCopy full SHA for d83cb8c
README.mdown
@@ -45,7 +45,9 @@ public class Startup
45
{
46
public void ConfigureServices(IServiceCollection services)
47
48
- services.AddEnyimMemcached(options => Configuration.GetSection("enyimMemcached"));
+ services.AddEnyimMemcached(Configuration.GetSection("enyimMemcached"));
49
+ // or
50
+ //services.AddEnyimMemcached(options => someSetupAction(options));
51
}
52
53
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
0 commit comments