コード例 #1
0
        public HomeModule()
        {
            var traceManager = new TraceManager();
            var traceSource = traceManager["SimpleAuthentication.Sample.NancyAuto.Modules"];
            traceSource.TraceVerbose("Hi There! Lets test this out :)");

            Get["/"] = _ => View["index"];
        }
コード例 #2
0
        public ActionResult Index()
        {
            var traceManager = new TraceManager();
            var traceSource = traceManager["SimpleAuthentication.Sample.MvcAuto.Controllers.HomeController"];
            traceSource.TraceVerbose("Hi There! Lets test this out :)");

            return View("Index", new IndexViewModel());
        }