Esempio n. 1
0
 public void Configuration(IAppBuilder app)
 {
     app.UseIdento(new IdentoOptions
         {
             Title = "Idento Manager",
     #if DEBUG
             RequireSsl = false,
     #else
             RequireSsl = true,
     #endif
             SigningCertificate = Certificate.LoadFromResrouce("Idento.HostSample.Idento.pfx", "IdentoTest"),
             ConnectionString = "Idento.HostSample"
         });
 }