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.
1 parent 9691011 commit 437ed4dCopy full SHA for 437ed4d
README.mdown
@@ -45,9 +45,11 @@ public class Startup
45
{
46
public void ConfigureServices(IServiceCollection services)
47
48
- services.AddEnyimMemcached(Configuration.GetSection("enyimMemcached"));
49
- // or
50
- //services.AddEnyimMemcached(options => someSetupAction(options));
+ services.AddEnyimMemcached();
+ //services.AddEnyimMemcached(Configuration);
+ //services.AddEnyimMemcached(Configuration, "enyimMemcached");
51
+ //services.AddEnyimMemcached(Configuration.GetSection("enyimMemcached"));
52
+ //services.AddEnyimMemcached(options => options.AddServer("memcached", 11211));
53
}
54
55
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
0 commit comments