コード例 #1
0
ファイル: Startup.cs プロジェクト: qcjxberin/DC.Blazor
        public void Configure(IComponentsApplicationBuilder app)
        {
            app.UseDCLocalisationExtension();  // Æô¶¯±¾µØ»¯²Ù×÷

            app.UseDCHttpClientInterceptor();  // ÆôÓÃHttpÇëÇóÀ¹½ØÆ÷
            //var httpInterceptor = app.Services.GetService<HttpClientInterceptorService>();
            //httpInterceptor.BeforeSend += HttpInterceptor_BeforeSend;
            //httpInterceptor.AfterSend += HttpInterceptor_AfterSend;

            app.UseDCLoadingBar();

            app.AddComponent <App>("app");
        }
コード例 #2
0
ファイル: Startup.cs プロジェクト: EnhWeb/DC.Blazor
        public void Configure(IComponentsApplicationBuilder app)
        {
            app.UseDCLocalisationExtension();  // 启动本地化操作

            app.UseDCHttpClientInterceptor();  // 启用Http请求拦截器
            //var httpInterceptor = app.Services.GetService<HttpClientInterceptorService>();
            //httpInterceptor.BeforeSend += HttpInterceptor_BeforeSend;
            //httpInterceptor.AfterSend += HttpInterceptor_AfterSend;

            app.UseDCLoadingBar();       // 使用网页加载顶部导航组件

            app.UseDCFontAwesomeIcons(); //使用AwesomeIcons组件

            app.AddComponent <App>("app");
        }