コード例 #1
0
 public void Configure(IComponentsApplicationBuilder app)
 {
     WebAssemblyHttpMessageHandler.DefaultCredentials = FetchCredentialsOption.Include;
     app.UseLoadingBar();
     app.AddComponent <App>("app");
 }
コード例 #2
0
 public void Configure(IComponentsApplicationBuilder app)
 {
     app.UseLoadingBar();
     app.AddComponent <App>("app");
 }
コード例 #3
0
ファイル: Startup.cs プロジェクト: Brekket/Blazor_test
 public void Configure(IComponentsApplicationBuilder app)
 {
     //WebAssemblyHttpMessageHandler.DefaultCredentials = FetchCredentialsOption.Include; //Not sure if we need this https://github.com/aspnet/AspNetCore/issues/17115 Preview4
     app.UseLoadingBar();
     app.AddComponent <App>("app");
 }