-
Notifications
You must be signed in to change notification settings - Fork 25.2k
/
Copy pathtoc.yml
2078 lines (2078 loc) · 86.9 KB
/
toc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
items:
- name: ASP.NET Core documentation
href: index.yml
- name: Overview
items:
- name: About ASP.NET Core
uid: index
- name: Compare ASP.NET Core and ASP.NET
uid: fundamentals/choose-between-aspnet-and-aspnetcore
- name: Compare .NET and .NET Framework
href: /dotnet/standard/choosing-core-framework-server?toc=/aspnet/core/toc.json&bc=/aspnet/core/breadcrumb/toc.json
- name: Get started
uid: getting-started
- name: What's new
items:
- name: What's new in 10
uid: aspnetcore-10
- name: What's new in 9
uid: aspnetcore-9
- name: What's new in 8
uid: aspnetcore-8
- name: What's new in 7
uid: aspnetcore-7
- name: What's new in 6
uid: aspnetcore-6.0
- name: What's new in 5
uid: aspnetcore-5.0
- name: What's new in 3.1
uid: aspnetcore-3.1
- name: What's new in 3.0
uid: aspnetcore-3.0
- name: What's new in 2.2
uid: aspnetcore-2.2
- name: What's new in 2.1
uid: aspnetcore-2.1
- name: What's new in 2.0
uid: aspnetcore-2.0
- name: What's new in 1.1
uid: aspnetcore-1.1
- name: What's new in docs
href: whats-new/index.yml
- name: Tutorials
displayName: tutorial
items:
- name: Web apps
items:
- name: Choose an ASP.NET Core UI
uid: tutorials/choose-web-ui
- name: Razor Pages
displayName: tutorial
items:
- name: Overview
uid: tutorials/razor-pages/index
- name: Get started
uid: tutorials/razor-pages/razor-pages-start
- name: Add a model
uid: tutorials/razor-pages/model
- name: Scaffolding
uid: tutorials/razor-pages/page
- name: Work with a database
uid: tutorials/razor-pages/sql
- name: Update the pages
uid: tutorials/razor-pages/da1
- name: Add search
uid: tutorials/razor-pages/search
- name: Add a new field
uid: tutorials/razor-pages/new-field
- name: Add validation
uid: tutorials/razor-pages/validation
- name: MVC
displayName: tutorial
items:
- name: Get started
uid: tutorials/first-mvc-app/start-mvc
- name: Add a controller
uid: tutorials/first-mvc-app/adding-controller
- name: Add a view
uid: tutorials/first-mvc-app/adding-view
- name: Add a model
uid: tutorials/first-mvc-app/adding-model
- name: Work with a database
uid: tutorials/first-mvc-app/working-with-sql
- name: Controller actions and views
uid: tutorials/first-mvc-app/controller-methods-views
- name: Add search
uid: tutorials/first-mvc-app/search
- name: Add a new field
uid: tutorials/first-mvc-app/new-field
- name: Add validation
uid: tutorials/first-mvc-app/validation
- name: Examine Details and Delete
uid: tutorials/first-mvc-app/details
- name: Blazor
uid: blazor/tutorials/index
- name: APIs
items:
- name: Controller-based APIs
items:
- name: Create a controller-based web API
displayName: API tutorial
uid: tutorials/first-web-api
- name: Web API with MongoDB
displayName: API tutorial
uid: tutorials/first-mongo-app
- name: Web API with JavaScript
displayName: tutorial
uid: tutorials/web-api-javascript
- name: Backend for mobile
displayName: tutorial
uid: mobile/native-mobile-backend
- name: Publish to Azure API Management
displayName: tutorial
uid: tutorials/publish-to-azure-api-management-using-vs
- name: Minimal APIs
items:
- name: Create a minimal web API
displayName: API tutorial
uid: tutorials/min-web-api
- name: Real-time web apps
items:
- name: SignalR with JavaScript
displayName: tutorial
uid: tutorials/signalr
- name: SignalR with TypeScript
displayName: tutorial
uid: tutorials/signalr-typescript-webpack
- name: SignalR with Blazor
displayName: tutorial
uid: blazor/tutorials/signalr-blazor
- name: Remote Procedure Call apps
items:
- name: Get started with a gRPC service
uid: tutorials/grpc/grpc-start
- name: Data access
items:
- name: EF Core with Razor Pages
displayName: tutorial
items:
- name: Get started
uid: data/ef-rp/intro
- name: Create, Read, Update, and Delete
uid: data/ef-rp/crud
- name: Sort, filter, page, and group
uid: data/ef-rp/sort-filter-page
- name: Migrations
uid: data/ef-rp/migrations
- name: Create a complex data model
uid: data/ef-rp/complex-data-model
- name: Read related data
uid: data/ef-rp/read-related-data
- name: Update related data
uid: data/ef-rp/update-related-data
- name: Handle concurrency conflicts
uid: data/ef-rp/concurrency
- name: EF Core with MVC
displayName: tutorial
items:
- name: Overview
uid: data/ef-mvc/index
- name: Get started
uid: data/ef-mvc/intro
- name: Create, Read, Update, and Delete
uid: data/ef-mvc/crud
- name: Sort, filter, page, and group
uid: data/ef-mvc/sort-filter-page
- name: Migrations
uid: data/ef-mvc/migrations
- name: Create a complex data model
uid: data/ef-mvc/complex-data-model
- name: Read related data
uid: data/ef-mvc/read-related-data
- name: Update related data
uid: data/ef-mvc/update-related-data
- name: Handle concurrency conflicts
uid: data/ef-mvc/concurrency
- name: Inheritance
uid: data/ef-mvc/inheritance
- name: Advanced topics
uid: data/ef-mvc/advanced
- name: Learn modules
items:
- name: Web apps >>
displayName: tutorial, razor, razor pages, ui
href: /training/modules/create-razor-pages-aspnet-core/
- name: Web APIs >>
displayName: tutorial
href: /training/modules/build-web-api-aspnet-core/
- name: Cloud-native microservices
items:
- name: Create and deploy >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-aspnet-core/
- name: Implement resiliency >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-resiliency-aspnet-core/
- name: Deploy with GitHub Actions >>
displayName: tutorial, kubernetes, aks, acr, docker, devops
href: /training/modules/microservices-devops-aspnet-core/
- name: Log and monitor >>
displayName: tutorial, kubernetes, aks, acr, docker, serilog
href: /training/modules/microservices-logging-aspnet-core/
- name: Implement feature flags >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-configuration-aspnet-core/
- name: Use managed data stores >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-data-aspnet-core/
- name: Implement API gateways >>
displayName: tutorial, kubernetes, aks, acr, docker
href: /training/modules/microservices-apigateway-aspnet-core/
- name: Data access >>
displayName: tutorial, ef, entity framework
href: /training/modules/persist-data-ef-core/
- name: Web app security >>
displayName: tutorial, identity
href: /training/modules/secure-aspnet-core-identity/
- name: Fundamentals
items:
- name: Overview
uid: fundamentals/index
- name: App start up
uid: fundamentals/startup
- name: Dependency injection (services)
uid: fundamentals/dependency-injection
- name: Native AOT
items:
- name: Overview
displayName: native, aot
uid: fundamentals/native-aot
- name: Tutorial
displayName: native, aot
uid: fundamentals/native-aot-tutorial
- name: Request Delegate Generator
displayName: aot, RDG, Request Delegate Generator
uid: fundamentals/aot/rdg
- name: Middleware
items:
- name: Middleware overview
uid: fundamentals/middleware/index
- name: Rate limiting middleware
uid: performance/rate-limit
- name: Middleware in Minimal API apps
uid: fundamentals/minimal-apis/middleware
- name: Test middleware
uid: test/middleware
- name: Response caching middleware
uid: performance/caching/middleware
- name: Write middleware
uid: fundamentals/middleware/write
- name: Request and response operations
displayName: middleware
uid: fundamentals/middleware/request-response
- name: Request decompression
displayName: request decompression middleware
uid: fundamentals/middleware/request-decompression
- name: Factory-based middleware
uid: fundamentals/middleware/extensibility
- name: Factory-based middleware with third-party container
uid: fundamentals/middleware/extensibility-third-party-container
- name: Host
items:
- name: WebApplication and WebApplicationBuilder
uid: fundamentals/minimal-apis/webapplication
- name: Generic Host
uid: fundamentals/host/generic-host
- name: Web Host
uid: fundamentals/host/web-host
- name: Configuration
uid: fundamentals/configuration/index
- name: Options
uid: fundamentals/configuration/options
- name: Environments (dev, stage, prod)
uid: fundamentals/environments
- name: Logging and monitoring
items:
- name: Logging
uid: fundamentals/logging/index
- name: HTTP logging
uid: fundamentals/http-logging/index
- name: W3C logger
uid: fundamentals/w3c-logger/index
- name: Health checks
displayName: logging, monitoring
uid: host-and-deploy/health-checks
- name: Metrics overview
displayName: logging, monitoring
uid: log-mon/metrics/metrics
- name: Built-in metrics >>
href: /dotnet/core/diagnostics/built-in-metrics-aspnetcore
- name: HttpContext
uid: fundamentals/use-httpcontext
- name: Routing
uid: fundamentals/routing
- name: Handle errors
uid: fundamentals/error-handling
- name: Make HTTP requests
displayName: httpclient, httpclientfactory
uid: fundamentals/http-requests
- name: Static files
uid: fundamentals/static-files
- name: dotnet-scaffold telemetry
uid: fundamentals/dotnet-scaffold-telemetry
- name: Web apps
items:
- name: Choose an ASP.NET Core UI
uid: tutorials/choose-web-ui
- name: Razor Pages
items:
- name: Introduction
uid: razor-pages/index
- name: Tutorial
items:
- name: Overview
uid: tutorials/razor-pages/index
- name: Get started
uid: tutorials/razor-pages/razor-pages-start
- name: Add a model
uid: tutorials/razor-pages/model
- name: Scaffolding
uid: tutorials/razor-pages/page
- name: Work with a database
uid: tutorials/razor-pages/sql
- name: Update the pages
uid: tutorials/razor-pages/da1
- name: Add search
uid: tutorials/razor-pages/search
- name: Add a new field
uid: tutorials/razor-pages/new-field
- name: Add validation
uid: tutorials/razor-pages/validation
- name: Filters
uid: razor-pages/filter
- name: Route and app conventions
uid: razor-pages/razor-pages-conventions
- name: MVC
items:
- name: Overview
uid: mvc/overview
- name: Tutorial
items:
- name: Get started
uid: tutorials/first-mvc-app/start-mvc
- name: Add a controller
uid: tutorials/first-mvc-app/adding-controller
- name: Add a view
uid: tutorials/first-mvc-app/adding-view
- name: Add a model
uid: tutorials/first-mvc-app/adding-model
- name: Work with a database
uid: tutorials/first-mvc-app/working-with-sql
- name: Controller actions and views
uid: tutorials/first-mvc-app/controller-methods-views
- name: Add search
uid: tutorials/first-mvc-app/search
- name: Add a new field
uid: tutorials/first-mvc-app/new-field
- name: Add validation
uid: tutorials/first-mvc-app/validation
- name: Examine the Details and Delete methods
uid: tutorials/first-mvc-app/details
- name: Views
uid: mvc/views/overview
- name: Partial views
uid: mvc/views/partial
- name: Controllers
uid: mvc/controllers/actions
- name: Routing
uid: mvc/controllers/routing
- name: Dependency injection - controllers
uid: mvc/controllers/dependency-injection
- name: Dependency injection - views
uid: mvc/views/dependency-injection
- name: Unit test
uid: mvc/controllers/testing
- name: Blazor
items:
- name: Overview
uid: blazor/index
- name: Supported platforms
uid: blazor/supported-platforms
- name: Tooling
uid: blazor/tooling
- name: WebAssembly tooling and AOT
uid: blazor/tooling/webassembly
- name: Hosting models
uid: blazor/hosting-models
- name: Tutorials
items:
- name: Overview
uid: blazor/tutorials/index
- name: Build your first Blazor app
href: https://dotnet.microsoft.com/learn/aspnet/blazor-tutorial/intro
- name: Build a Blazor todo list app
uid: blazor/tutorials/build-a-blazor-app
- name: Build a Blazor movie database app
items:
- name: Overview
uid: blazor/tutorials/movie-database-app/index
- name: Create a Blazor Web App
uid: blazor/tutorials/movie-database-app/part-1
- name: Add and scaffold a model
uid: blazor/tutorials/movie-database-app/part-2
- name: Learn about Razor components
uid: blazor/tutorials/movie-database-app/part-3
- name: Work with a database
uid: blazor/tutorials/movie-database-app/part-4
- name: Add validation
uid: blazor/tutorials/movie-database-app/part-5
- name: Add search
uid: blazor/tutorials/movie-database-app/part-6
- name: Add a new field
uid: blazor/tutorials/movie-database-app/part-7
- name: Add interactivity
uid: blazor/tutorials/movie-database-app/part-8
- name: SignalR with Blazor
uid: blazor/tutorials/signalr-blazor
- name: Learn modules
href: /training/paths/build-web-apps-with-blazor/
- name: Blazor Hybrid
items:
- name: Overview
uid: blazor/hybrid/index
- name: Tutorials
items:
- name: Overview
uid: blazor/hybrid/tutorials/index
- name: .NET MAUI
uid: blazor/hybrid/tutorials/maui
- name: .NET MAUI with Blazor Web App
uid: blazor/hybrid/tutorials/maui-blazor-web-app
- name: Windows Forms
uid: blazor/hybrid/tutorials/windows-forms
- name: WPF
uid: blazor/hybrid/tutorials/wpf
- name: Routing and navigation
uid: blazor/hybrid/routing
- name: Static files
uid: blazor/hybrid/static-files
- name: Browser developer tools
uid: blazor/hybrid/developer-tools
- name: Reuse Razor components
uid: blazor/hybrid/reuse-razor-components
- name: Class libraries
uid: blazor/hybrid/class-libraries
- name: Root component parameters
uid: blazor/hybrid/root-component-parameters
- name: Security and Identity
items:
- name: Overview
uid: blazor/hybrid/security/index
- name: Security considerations
uid: blazor/hybrid/security/security-considerations
- name: Publish
uid: blazor/hybrid/publish/index
- name: Troubleshoot
uid: blazor/hybrid/troubleshoot
- name: Project structure
uid: blazor/project-structure
- name: Fundamentals
items:
- name: Overview
uid: blazor/fundamentals/index
- name: Routing and navigation
uid: blazor/fundamentals/routing
- name: Configuration
uid: blazor/fundamentals/configuration
- name: Dependency injection
uid: blazor/fundamentals/dependency-injection
- name: Startup
uid: blazor/fundamentals/startup
- name: Environments
uid: blazor/fundamentals/environments
- name: Logging
uid: blazor/fundamentals/logging
- name: Handle errors
uid: blazor/fundamentals/handle-errors
- name: SignalR
uid: blazor/fundamentals/signalr
- name: Static files
uid: blazor/fundamentals/static-files
- name: Components
items:
- name: Overview
uid: blazor/components/index
- name: Render modes
uid: blazor/components/render-modes
- name: Prerender components
uid: blazor/components/prerender
- name: IHttpContextAccessor and HttpContext
uid: blazor/components/httpcontext
- name: Generic type support
uid: blazor/components/generic-type-support
- name: Synchronization context
uid: blazor/components/sync-context
- name: Preserve relationships with @key
uid: blazor/components/key
- name: Overwriting parameters
uid: blazor/components/overwriting-parameters
- name: Attribute splatting and arbitrary parameters
uid: blazor/components/attribute-splatting
- name: Layouts
uid: blazor/components/layouts
- name: Sections
uid: blazor/components/sections
- name: Control <head> content
uid: blazor/components/control-head-content
- name: Cascading values and parameters
uid: blazor/components/cascading-values-and-parameters
- name: Event handling
uid: blazor/components/event-handling
- name: Data binding
uid: blazor/components/data-binding
- name: Lifecycle
uid: blazor/components/lifecycle
- name: Virtualization
uid: blazor/components/virtualization
- name: Rendering
uid: blazor/components/rendering
- name: Templated components
uid: blazor/components/templated-components
- name: CSS isolation
uid: blazor/components/css-isolation
- name: Dynamically-rendered components
uid: blazor/components/dynamiccomponent
- name: QuickGrid component
uid: blazor/components/quickgrid
- name: Integrate with MVC/Razor Pages
uid: blazor/components/integration
- name: Integrate with MVC/Razor Pages (hosted WebAssembly)
uid: blazor/components/integration-hosted-webassembly
- name: Class libraries
uid: blazor/components/class-libraries
- name: Class libraries with static SSR
uid: blazor/components/class-libraries-with-static-ssr
- name: JavaScript apps and SPA frameworks
uid: blazor/components/js-spa-frameworks
- name: Components outside of ASP.NET Core
uid: blazor/components/render-outside-of-aspnetcore
- name: Built-in components
uid: blazor/components/built-in-components
- name: Globalization and localization
uid: blazor/globalization-localization
- name: Forms
items:
- name: Overview
uid: blazor/forms/index
- name: Input components
uid: blazor/forms/input-components
- name: Binding
uid: blazor/forms/binding
- name: Validation
uid: blazor/forms/validation
- name: Troubleshoot
uid: blazor/forms/troubleshoot
- name: File uploads
uid: blazor/file-uploads
- name: File downloads
uid: blazor/file-downloads
- name: JavaScript interop
items:
- name: Overview
uid: blazor/js-interop/index
- name: JavaScript location
uid: blazor/js-interop/javascript-location
- name: Call JS from .NET
uid: blazor/js-interop/call-javascript-from-dotnet
- name: Call .NET from JS
uid: blazor/js-interop/call-dotnet-from-javascript
- name: JSImport/JSExport interop
uid: blazor/js-interop/import-export-interop
- name: Static server rendering
uid: blazor/js-interop/ssr
- name: Call a web API
uid: blazor/call-web-api
- name: Images and documents
uid: blazor/images-and-documents
- name: Security and Identity
items:
- name: Overview
uid: blazor/security/index
- name: Authentication state
uid: blazor/security/authentication-state
- name: Blazor WebAssembly
items:
- name: Overview
uid: blazor/security/webassembly/index
- name: Standalone with Identity
items:
- name: Overview
uid: blazor/security/webassembly/standalone-with-identity/index
- name: Account confirmation and password recovery
uid: blazor/security/webassembly/standalone-with-identity/account-confirmation-and-password-recovery
- name: QR codes with TOTP
uid: blazor/security/webassembly/standalone-with-identity/qrcodes-for-authenticator-apps
- name: Standalone with Authentication library
uid: blazor/security/webassembly/standalone-with-authentication-library
- name: Standalone with Microsoft Accounts
uid: blazor/security/webassembly/standalone-with-microsoft-accounts
- name: Standalone with ME-ID
uid: blazor/security/webassembly/standalone-with-microsoft-entra-id
- name: Standalone with AAD B2C
uid: blazor/security/webassembly/standalone-with-azure-active-directory-b2c
- name: Hosted with ME-ID
uid: blazor/security/webassembly/hosted-with-microsoft-entra-id
- name: Hosted with AAD B2C
uid: blazor/security/webassembly/hosted-with-azure-active-directory-b2c
- name: Hosted with Identity Server
uid: blazor/security/webassembly/hosted-with-identity-server
- name: Additional scenarios
uid: blazor/security/webassembly/additional-scenarios
- name: ME-ID groups and roles
uid: blazor/security/webassembly/meid-groups-roles
- name: ME-ID groups and roles
uid: blazor/security/webassembly/meid-groups-roles-net5to7
- name: Graph API
uid: blazor/security/webassembly/graph-api
- name: Blazor Web App with Entra
uid: blazor/security/blazor-web-app-entra
- name: Blazor Web App with OIDC
uid: blazor/security/blazor-web-app-oidc
- name: Blazor Web App with Windows Auth
uid: blazor/security/blazor-web-app-windows-authentication
- name: Static server-side rendering threats
uid: blazor/security/static-server-side-rendering
- name: Interactive server-side rendering threats
uid: blazor/security/interactive-server-side-rendering
- name: Account confirmation and password recovery
uid: blazor/security/account-confirmation-and-password-recovery
- name: QR codes with TOTP
uid: blazor/security/qrcodes-for-authenticator-apps
- name: Content Security Policy
uid: blazor/security/content-security-policy
- name: EU General Data Protection Regulation (GDPR) support
uid: blazor/security/gdpr
- name: Server-side and Blazor Web App additional scenarios
uid: blazor/security/additional-scenarios
- name: State management
uid: blazor/state-management
- name: Debug
uid: blazor/debug
- name: Lazy load assemblies with WebAssembly
uid: blazor/webassembly-lazy-load-assemblies
- name: WebAssembly native dependencies
uid: blazor/webassembly-native-dependencies
- name: Performance
uid: blazor/performance
- name: Test components
uid: blazor/test
- name: Progressive Web Applications
uid: blazor/progressive-web-app
- name: Host and deploy
items:
- name: Overview
uid: blazor/host-and-deploy/index
- name: Server
uid: blazor/host-and-deploy/server
- name: Blazor WebAssembly
uid: blazor/host-and-deploy/webassembly
- name: WebAssembly caching
items:
- name: Overview
uid: blazor/host-and-deploy/webassembly-caching/index
- name: HTTP caching issues
uid: blazor/host-and-deploy/webassembly-caching/http-caching-issues
- name: Configure the Linker
uid: blazor/host-and-deploy/configure-linker
- name: Configure the Trimmer
uid: blazor/host-and-deploy/configure-trimmer
- name: WebAssembly deployment layout
uid: blazor/host-and-deploy/webassembly-deployment-layout
- name: Multiple hosted WebAssembly apps
uid: blazor/host-and-deploy/multiple-hosted-webassembly
- name: Blazor with EF Core
uid: blazor/blazor-ef-core
- name: Advanced scenarios
uid: blazor/advanced-scenarios
- name: Client-side development
items:
- name: Single Page Apps
items:
- name: Angular with Visual Studio >>
href: /visualstudio/javascript/tutorial-asp-net-core-with-angular
- name: React with Visual Studio >>
href: /visualstudio/javascript/tutorial-asp-net-core-with-react
- name: Vue with Visual Studio >>
href: /visualstudio/javascript/tutorial-asp-net-core-with-vue
- name: JavaScript and TypeScript in Visual Studio >>
href: /visualstudio/javascript/javascript-in-visual-studio
- name: Overview of SPAs
uid: spa/intro
- name: Angular
uid: spa/angular
- name: React
uid: spa/react
- name: JavaScript Services
uid: client-side/spa-services
- name: LibMan
items:
- name: Overview
uid: client-side/libman/index
- name: CLI
uid: client-side/libman/libman-cli
- name: Visual Studio
uid: client-side/libman/libman-vs
- name: WebAssembly JS interop
items:
- name: Overview
uid: client-side/dotnet-interop/index
- name: JS interop (WebAssembly Browser App)
uid: client-side/dotnet-interop/wasm-browser-app
- name: Grunt
uid: client-side/using-grunt
- name: Bundle and minify
uid: client-side/bundling-and-minification
- name: Browser Link
uid: client-side/using-browserlink
- name: Session and state management
uid: fundamentals/app-state
- name: Layout
uid: mvc/views/layout
- name: Razor syntax
uid: mvc/views/razor
- name: Razor class libraries
uid: razor-pages/ui-class
- name: Tag Helpers
uid: mvc/views/tag-helpers/builtin-th/Index
items:
- name: Overview
uid: mvc/views/tag-helpers/intro
- name: Create Tag Helpers
uid: mvc/views/tag-helpers/authoring
- name: Use Tag Helpers in forms
uid: mvc/views/working-with-forms
- name: Tag Helper Components
uid: mvc/views/tag-helpers/th-components
- name: Built-in Tag Helpers
items:
- name: Anchor
uid: mvc/views/tag-helpers/builtin-th/anchor-tag-helper
- name: Cache
uid: mvc/views/tag-helpers/builtin-th/cache-tag-helper
- name: Component
uid: mvc/views/tag-helpers/builtin-th/component-tag-helper
- name: Distributed Cache
uid: mvc/views/tag-helpers/builtin-th/distributed-cache-tag-helper
- name: Environment
uid: mvc/views/tag-helpers/builtin-th/environment-tag-helper
- name: Form
href: mvc/views/working-with-forms.md#the-form-tag-helper
- name: Form Action
href: mvc/views/working-with-forms.md#the-form-action-tag-helper
- name: Image
uid: mvc/views/tag-helpers/builtin-th/image-tag-helper
- name: Input
href: mvc/views/working-with-forms.md#the-input-tag-helper
- name: Label
href: mvc/views/working-with-forms.md#the-label-tag-helper
- name: Link
uid: mvc/views/tag-helpers/builtin-th/link-tag-helper
- name: Partial
uid: mvc/views/tag-helpers/builtin-th/partial-tag-helper
- name: Persist Component State
uid: mvc/views/tag-helpers/builtin-th/persist-component-state-tag-helper
- name: Script
uid: mvc/views/tag-helpers/builtin-th/script-tag-helper
- name: Select
href: mvc/views/working-with-forms.md#the-select-tag-helper
- name: Textarea
href: mvc/views/working-with-forms.md#the-textarea-tag-helper
- name: Validation Message
href: mvc/views/working-with-forms.md#the-validation-message-tag-helper
- name: Validation Summary
href: mvc/views/working-with-forms.md#the-validation-summary-tag-helper
- name: Advanced
items:
- name: Application parts
uid: mvc/extensibility/app-parts
- name: Application model
uid: mvc/controllers/application-model
- name: Areas
uid: mvc/controllers/areas
- name: Filters
uid: mvc/controllers/filters
- name: Razor SDK
uid: razor-pages/sdk
- name: Razor breaking changes since .NET 8
href: ../_razor/docs/Compiler%20Breaking%20Changes%20-%20DotNet%208.md
- name: Razor breaking changes since .NET 9
href: ../_razor/docs/Compiler%20Breaking%20Changes%20-%20DotNet%209.md
- name: View components
uid: mvc/views/view-components
- name: View compilation
uid: mvc/views/view-compilation
- name: Display and Editor Templates
uid: mvc/views/display-templates
- name: Upload files
uid: mvc/models/file-uploads
- name: Web SDK
uid: razor-pages/web-sdk
- name: Code generator tool (scaffolding)
displayName: aspnet-codegenerator
uid: fundamentals/tools/dotnet-aspnet-codegenerator
- name: APIs
items:
- name: Overview
uid: fundamentals/apis
- name: Controller-based APIs
items:
- name: Overview
uid: web-api/index
- name: Tutorials
items:
- name: Create a web API with controllers
uid: tutorials/first-web-api
- name: Web API with MongoDB
uid: tutorials/first-mongo-app
- name: Action return types
uid: web-api/action-return-types
- name: Handle JSON Patch requests
uid: web-api/jsonpatch
- name: Format response data
uid: web-api/advanced/formatting
- name: Custom formatters
uid: web-api/advanced/custom-formatters
- name: Analyzers
uid: web-api/advanced/analyzers
- name: Conventions
uid: web-api/advanced/conventions
- name: Handle errors
uid: web-api/handle-errors
- name: Test with HttpRepl
items:
- name: Overview
uid: web-api/http-repl
- name: Telemetry
uid: web-api/http-repl/telemetry
- name: Minimal APIs
items:
- name: Overview
uid: fundamentals/minimal-apis/overview
- name: "Tutorial: Create a minimal API"
uid: tutorials/min-web-api
- name: Minimal APIs quick reference
uid: fundamentals/minimal-apis
- name: WebApplication and WebApplicationBuilder
uid: fundamentals/minimal-apis/webapplication
- name: Route Handlers
uid: fundamentals/minimal-apis/route-handlers
- name: Parameter binding
uid: fundamentals/minimal-apis/parameter-binding
- name: Create responses
uid: fundamentals/minimal-apis/responses
- name: Filters
uid: fundamentals/minimal-apis/min-api-filters
- name: Unit and integration tests
uid: fundamentals/minimal-apis/test-min-api
- name: Middleware
uid: fundamentals/minimal-apis/middleware
- name: Handle errors
uid: fundamentals/minimal-apis/handle-errors
- name: Authentication and authorization
uid: fundamentals/minimal-apis/security
- name: OpenAPI
items:
- name: Overview
uid: fundamentals/openapi/overview
- name: Generate OpenAPI documents
uid: fundamentals/openapi/aspnetcore-openapi
- name: Include OpenAPI metadata
uid: fundamentals/openapi/include-metadata
- name: Customize OpenAPI documents
uid: fundamentals/openapi/customize-openapi
- name: Use OpenAPI documents
uid: fundamentals/openapi/using-openapi-documents
- name: OpenAPI tools
uid: fundamentals/openapi/openapi-tools
- name: Swagger / NSwag
items:
- name: Overview
uid: tutorials/web-api-help-pages-using-swagger
- name: Get started with Swashbuckle
uid: tutorials/get-started-with-swashbuckle
- name: Get started with NSwag
uid: tutorials/get-started-with-nswag
- name: Real-time apps
displayName: signalr
items:
- name: Overview
uid: signalr/introduction
- name: Supported platforms
uid: signalr/supported-platforms
displayName: signalr
- name: Tutorials
items:
- name: SignalR with JavaScript
uid: tutorials/signalr
- name: SignalR with TypeScript
uid: tutorials/signalr-typescript-webpack
- name: SignalR with Blazor
uid: blazor/tutorials/signalr-blazor
- name: Samples
href: https://github.com/aspnet/SignalR-samples
displayName: signalr
- name: Server concepts
displayName: signalr
items:
- name: Hubs
uid: signalr/hubs
displayName: signalr
- name: Send from outside a hub
uid: signalr/hubcontext
displayName: signalr
- name: Users and groups
uid: signalr/groups
displayName: signalr
- name: API design considerations
uid: signalr/api-design
displayName: signalr
- name: Hub filters
uid: signalr/hub-filters
displayName: signalr
- name: Clients
displayName: signalr
items:
- name: Overview
uid: signalr/client-features
displayName: signalr
- name: .NET client
uid: signalr/dotnet-client
displayName: signalr
- name: .NET API reference
href: /dotnet/api/microsoft.aspnetcore.signalr.client
displayName: signalr
- name: Java client
uid: signalr/java-client
displayName: signalr
- name: Java API reference
href: /java/api/com.microsoft.signalr
displayName: signalr
- name: JavaScript client
uid: signalr/javascript-client
displayName: signalr
- name: JavaScript API reference
href: /javascript/api/@microsoft/signalr/
displayName: signalr
- name: Host and scale
displayName: signalr
items:
- name: Overview
displayName: signalr
uid: signalr/scale
- name: Azure App Service
uid: signalr/publish-to-azure-web-app
displayName: signalr
- name: Redis backplane
displayName: signalr
uid: signalr/redis-backplane
- name: SignalR with background services
uid: signalr/background-services
- name: Configuration
uid: signalr/configuration
displayName: signalr
- name: IHttpContextAccessor and HttpContext
uid: signalr/httpcontext
displayName: signalr
- name: Authentication and authorization
uid: signalr/authn-and-authz
displayName: signalr
- name: Security considerations
uid: signalr/security
displayName: signalr
- name: MessagePack Hub Protocol
uid: signalr/messagepackhubprotocol
displayName: signalr
- name: Streaming
uid: signalr/streaming
displayName: signalr
- name: Compare SignalR and SignalR Core
uid: signalr/version-differences
displayName: signalr
- name: WebSockets
displayName: signalr
uid: fundamentals/websockets
- name: Logging and diagnostics
displayName: signalr
uid: signalr/diagnostics
- name: Troubleshooting
displayName: signalr
uid: signalr/troubleshoot
- name: Specifications
displayName: signalr, specs
items:
- name: Hub protocol
href: https://github.com/aspnet/AspNetCore/blob/main/src/SignalR/docs/specs/HubProtocol.md
- name: Transport protocols
href: https://github.com/aspnet/AspNetCore/blob/main/src/SignalR/docs/specs/TransportProtocols.md
- name: Remote Procedure Call apps
items:
- name: Overview
uid: grpc/index