public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            var opts = AppErrorthAlerting.GetOptions();

            context.Response.Write(Newtonsoft.Json.JsonConvert.SerializeObject(opts));
        }
Example #2
0
        public dynamic GetAppErrOpts()
        {
            var opts = AppErrorthAlerting.GetOptions();

            return(Newtonsoft.Json.JsonConvert.SerializeObject(opts));
        }