コード例 #1
0
ファイル: DobermanPage.cs プロジェクト: moov2/doberman
        protected void Page_Load(object sender, EventArgs e)
        {
            Configuration.CheckPageLoad(HttpContext.Current.Request.Url);

            var doberman = new Doberman();
            var result = doberman.Run(doberman.Fetch((DobermanConfiguration)Configuration));

            DobermanResponse.Output(Context, result);
        }
コード例 #2
0
        public void Index()
        {
            Configuration.CheckPageLoad(Request.Url);

            var doberman = new Doberman();
            var result = doberman.Run(doberman.Fetch((DobermanConfiguration)Configuration));

            DobermanResponse.Output(System.Web.HttpContext.Current, result);
        }