forked from Particular/docs.particular.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.yaml
1438 lines (1432 loc) · 52.8 KB
/
menu.yaml
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
- Name: Getting Started
Url: get-started
Topics:
- Url: get-started
Title: Getting Started
Articles:
- Url: tutorials/quickstart
Title: Quick Start Tutorial
Articles:
- Url: tutorials/quickstart/tutorial-reliability
Title: "Quick Start: Recovering from failure"
- Url: tutorials/quickstart/tutorial-extending-the-system
Title: "Quick Start: Extending the system"
- Url: tutorials/nservicebus-step-by-step
Title: Introduction to NServiceBus
Articles:
- Url: tutorials/nservicebus-step-by-step/1-getting-started
Title: Getting Started
- Url: tutorials/nservicebus-step-by-step/2-sending-a-command
Title: Sending a command
- Url: tutorials/nservicebus-step-by-step/3-multiple-endpoints
Title: Multiple endpoints
- Url: tutorials/nservicebus-step-by-step/4-publishing-events
Title: Publishing events
- Url: tutorials/nservicebus-step-by-step/5-retrying-errors
Title: Retrying errors
- Url: tutorials/message-replay
Title: Message replay tutorial
- Url: tutorials/nservicebus-sagas
Title: NServiceBus Sagas
Articles:
- Url: tutorials/nservicebus-sagas/1-saga-basics
Title: Saga basics
- Url: tutorials/nservicebus-sagas/2-timeouts
Title: Timeouts
- Url: tutorials/nservicebus-sagas/3-integration
Title: Third-party integration
- Url: tutorials
Title: More tutorials
Articles:
- Url: tutorials/monitoring-setup
Title: NServiceBus monitoring setup
- Url: tutorials/monitoring-demo
Title: NServiceBus monitoring demo
- Url: get-started/high-level-content
Title: High-level content
- Url: samples/netcore
Title: .NET Core Samples
- Name: NServiceBus
Topics:
- Url: nservicebus
Title: General
Articles:
- Url: nservicebus/best-practices
Title: Best practices
- Url: nservicebus/concepts
Title: Messaging Concepts
Articles:
- Url: nservicebus/concepts/glossary
Title: Glossary
- Url: nservicebus/concepts/priority-queues
Title: Priority Queues
- Url: nservicebus/concepts/data-distribution
Title: Data distribution
- Url: platform
Title: Service Platform
Articles:
- Url: platform/installation
Title: Platform Installation
- Url: platform/platform-sample-package
Title: Platform Sample Installation
- Url: platform/connecting
Title: Connecting endpoints
- Url: platform/json-schema
Title: Connection schema
- Url: samples/endpoint-configuration
Title: Configuration choices Sample
- Url: nservicebus/dotnet-templates
Title: dotnet new Templates
- Url: nservicebus/vscode
Title: Debugging in VS Code
- Url: nservicebus/licensing
Title: License
- Url: nservicebus/community
Title: Community extensions and integrations
- Url: nservicebus/release-notifications
Title: Release notifications
- Url: platform/contributing
Title: Contributing
- Url: nservicebus/architecture/principles
Title: Architectural Principles
- Url: nservicebus/architecture/scaling
Title: Scaling out
- Url: nservicebus/architecture
Title: Bus vs. Broker
- Url: nservicebus/upgrades
Title: Upgrade Guides
Articles:
- Url: nservicebus/upgrades/support-policy
Title: Support Policy
Articles:
- Url: nservicebus/upgrades/supported-versions
Title: Supported versions
- Url: nservicebus/upgrades/all-versions
Title: All versions
- Url: nservicebus/upgrades/supported-platforms
Title: Supported frameworks and platforms
- Url: nservicebus/upgrades/release-policy
Title: Release Policy
- Url: nservicebus/upgrades/third-party-licenses
Title: Third-party licenses
- Url: security-advisories
Title: Security Advisories
Articles:
- Url: security-advisories/msmq-permissions
Title: 2017-01-10
- Url: security-advisories/sqlserver-sqlinjection
Title: 2016-07-05
- Url: security-advisories/asq-alias-for-default-connectionstring
Title: 2018-01-19
- Url: nservicebus/upgrades/callbacks-1to2
Title: Callbacks 1 to 2
- Url: nservicebus/upgrades/8to9
Title: NServiceBus 8 to 9
- Url: nservicebus/upgrades/7to8
Title: NServiceBus 7 to 8
Articles:
- Url: nservicebus/upgrades/7to8/transport
Title: Transport Configuration Changes
- Url: nservicebus/upgrades/7to8/dependency-injection
Title: Dependency Injection Changes
- Url: nservicebus/upgrades/7to8/message-contracts
Title: Upgrading shared message contracts
- Url: nservicebus/upgrades/6to7
Title: NServiceBus 6 to 7
Articles:
- Url: nservicebus/upgrades/encryption-1to2
Title: Encryption
- Url: nservicebus/upgrades/6to7/moving-msmq-subscriptions
Title: Migrating Msmq subscriptions
- Url: nservicebus/upgrades/6to6.2
Title: NServiceBus 6 to 6.2
- Url: nservicebus/upgrades/5to6
Title: NServiceBus 5 to 6
Articles:
- Url: nservicebus/upgrades/5to6/moving-away-from-ibus
Title: Migrating off IBus
- Url: nservicebus/upgrades/5to6/endpoint
Title: Endpoint API changes
- Url: nservicebus/upgrades/5to6/handlers-and-sagas
Title: Handlers and Sagas
- Url: nservicebus/upgrades/5to6/async-suffix
Title: Async Suffix
- Url: nservicebus/upgrades/5to6/transaction-configuration
Title: Transaction configuration
- Url: nservicebus/upgrades/5to6/headers
Title: Headers
- Url: nservicebus/upgrades/5to6/callbacks
Title: Callbacks
- Url: nservicebus/upgrades/5to6/messaging
Title: Messaging
- Url: nservicebus/upgrades/5to6/serialization
Title: Serialization
- Url: nservicebus/upgrades/5to6/recoverability
Title: Recoverability
- Url: nservicebus/upgrades/5to6/subscriptions
Title: Subscriptions
- Url: nservicebus/upgrades/5to6/assembly-scanning
Title: Assembly Scanning
- Url: nservicebus/upgrades/5to6/deprecated-transportmessage
Title: Deprecated TransportMessage
- Url: nservicebus/upgrades/5to6/distributor
Title: Distributor
- Url: nservicebus/upgrades/5to6/extension-seams
Title: Extension Seams
- Url: nservicebus/upgrades/5to6/dependency-injection
Title: Dependency Injection
- Url: nservicebus/upgrades/5to6/tools-and-helpers
Title: Tools and Helpers
- Url: nservicebus/upgrades/4to5
Title: NServiceBus 4 to 5
- Url: nservicebus/upgrades/3to4
Title: NServiceBus 3 to 4
- Title: Metrics
Articles:
- Url: nservicebus/upgrades/metrics-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/metrics-1to1.1
Title: Version 1 to 1.1
- Title: NServiceBus Host
Articles:
- Url: nservicebus/upgrades/host-7to8
Title: Version 7 to 8
- Url: nservicebus/upgrades/host-6to7
Title: Version 6 to 7
- Url: nservicebus/upgrades/host-4to5
Title: Version 4 to 5
- Title: NServiceBus.Azure deprecated
Url: nservicebus/upgrades/azure-deprecation
- Title: Azure BlobStorage Data Bus
Articles:
- Url: nservicebus/upgrades/absdatabus-6to1
Title: Migrating off NServiceBus.Azure
- Url: nservicebus/upgrades/absdatabus-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/absdatabus-2to3
Title: Version 2 to 3
- Url: nservicebus/upgrades/absdatabus-3to4
Title: Version 3 to 4
- Url: nservicebus/upgrades/absdatabus-4to5
Title: Version 4 to 5
- Title: Azure Cloud Services Host
Articles:
- Url: nservicebus/upgrades/acs-host-7to8
Title: Version 7 to 8
- Url: nservicebus/upgrades/acs-host-6to7
Title: Version 6 to 7
- Title: Azure Functions (isolated worker) with Service Bus
Articles:
- Url: nservicebus/upgrades/azure-functions-service-bus-isolated-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/azure-functions-service-bus-isolated-2to3
Title: Version 2 to 3
- Url: nservicebus/upgrades/azure-functions-service-bus-isolated-3to4
Title: Version 3 to 4
- Title: Azure Functions (in-process) with Service Bus
Articles:
- Url: nservicebus/upgrades/azure-functions-service-bus-in-process-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/azure-functions-service-bus-in-process-2to3
Title: Version 2 to 3
- Url: nservicebus/upgrades/azure-functions-service-bus-in-process-3to4
Title: Version 3 to 4
- Title: Gateway
Articles:
- Url: nservicebus/upgrades/gateway-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/gateway-2to3
Title: Version 2 to 3
- Title: NServiceBus Testing
Articles:
- Url: nservicebus/upgrades/testing-7to8
Title: Version 7 to 8
- Url: nservicebus/upgrades/testing-6to7
Title: Version 6 to 7
- Url: nservicebus/upgrades/testing-5to6
Title: Version 5 to 6
- Title: Message Property Encryption
Articles:
- Url: nservicebus/upgrades/externalize-encryption
Title: Migrate To External Nuget
- Title: Performance Counters
Articles:
- Url: nservicebus/upgrades/perfcounters-3to4
Title: Version 3 to 4
- Url: nservicebus/upgrades/perfcounters-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/externalize-perfcounters
Title: Migrate To External Nuget
- Title: ServiceControl Plugins
Articles:
- Url: nservicebus/upgrades/nsb6-sc-plugins-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/nservicebus.sagaaudit
Title: ServiceControl.Plugin.X.SagaAudit to NServiceBus.SagaAudit
- Url: nservicebus/upgrades/nservicebus.customchecks
Title: ServiceControl.Plugin.X.CustomChecks to NServiceBus.CustomChecks
- Url: nservicebus/upgrades/nservicebus.heartbeat
Title: ServiceControl.Plugin.X.Heartbeat to NServiceBus.Heartbeat
- Title: Upgrade NServiceBus.Wormhole to NServiceBus.Router
Url: nservicebus/upgrades/wormhole-router
- Url: nservicebus/messaging
Title: Messaging
Articles:
- Url: nservicebus/messaging/messages-events-commands
Title: Messages, Events and Commands
Articles:
- Url: nservicebus/messaging/message-identity
Title: Message Identity
- Url: nservicebus/messaging/message-type-detection
Title: Message type detection
- Url: nservicebus/messaging/messages-as-interfaces
Title: Messages as Interfaces
- Url: nservicebus/messaging/conventions
Title: Conventions
- Url: nservicebus/messaging/unobtrusive-mode
Title: Unobtrusive Mode
- Url: nservicebus/messaging/immutable-messages
Title: Immutable messages
- Url: nservicebus/messaging/best-practice-enforcement
Title: Best practice enforcement
- Url: nservicebus/messaging/sharing-contracts
Title: Sharing message contracts
- Title: Evolving systems
Articles:
- Url: nservicebus/messaging/moving-handlers
Title: Moving Handlers
- Url: nservicebus/messaging/evolving-contracts
Title: Evolving contracts
- Url: nservicebus/messaging/send-a-message
Title: Sending messages
Articles:
- Url: nservicebus/messaging/reply-to-a-message
Title: Replying
- Url: nservicebus/messaging/batched-dispatch
Title: Batched message dispatch
- Url: nservicebus/messaging/callbacks
Title: Client side Callbacks
- Url: nservicebus/messaging/uniformsession
Title: Uniform Session between message session and pipeline
- Url: nservicebus/messaging/discard-old-messages
Title: Discarding Expired Messages
- Url: nservicebus/messaging/non-durable-messaging
Title: Non-Durable Messaging
- Url: nservicebus/messaging/forwarding
Title: Forwarding
- Url: nservicebus/messaging/delayed-delivery
Title: Delayed Delivery
Articles:
- Url: nservicebus/messaging/timeout-manager
Title: Timeout Manager
- Url: nservicebus/messaging/publish-subscribe
Title: Publish Subscribe
Articles:
- Url: nservicebus/messaging/publish-subscribe/publish-handle-event
Title: Publish and Handle an Event
- Url: nservicebus/messaging/publish-subscribe/controlling-what-is-subscribed
Title: Subscription configuration
- Url: nservicebus/messaging/headers
Title: Message Headers
Articles:
- Url: nservicebus/messaging/header-manipulation
Title: Header Manipulation
- Url: nservicebus/messaging/third-party-integration
Title: Third Party Integration
- Url: nservicebus/endpoints/specify-endpoint-name
Title: Specify Endpoint Name
- Url: nservicebus/messaging/routing
Title: Routing
Articles:
- Url: nservicebus/messaging/routing-extensibility
Title: Routing extensibility points
- Url: nservicebus/scheduling
Title: Scheduling
- Url: nservicebus/gateway
Title: Gateway
Articles:
- Url: nservicebus/gateway/multi-site-deployments
Title: Multi-Site Deployments
- Url: nservicebus/gateway/sql
Title: SQL deduplication storage
- Url: nservicebus/gateway/ravendb
Title: RavenDB deduplication storage
- Url: nservicebus/gateway/troubleshooting
Title: Troubleshooting
- Url: nservicebus/gateway/scale-out
Title: Scale-Out
- Url: nservicebus/router
Title: Router
Articles:
- Url: nservicebus/router/bridge
Title: Two-way bridge topology
- Url: nservicebus/router/multi-way
Title: Multi-way bridge topology
- Url: nservicebus/router/backplane
Title: Backplane topology
- Url: nservicebus/router/bridge-router
Title: Upgrade NServiceBus.Bridge to NServiceBus.Router
- Url: nservicebus/rawmessaging
Title: Raw messaging
- Url: nservicebus/outbox
Title: Outbox
- Url: nservicebus/messaging/databus
Title: Data Bus
Articles:
- Url: nservicebus/messaging/databus/file-share
Title: File Share
- Url: nservicebus/messaging/databus/azure-blob-storage
Title: Azure Blob Storage
- Url: nservicebus/messaging/databus/custom
Title: Custom
- Url: nservicebus/hosting
Title: Hosting
Articles:
- Url: nservicebus/endpoints
Title: Endpoints
Articles:
- Url: nservicebus/endpoints/specify-endpoint-name
Title: Endpoint Name
- Url: nservicebus/hosting/selecting
Title: Selecting a host
- Url: nservicebus/hosting/startup-diagnostics
Title: Startup diagnostics
- Url: nservicebus/endpoints/decommissioning-endpoints
Title: Decommissioning Endpoints
- Url: nservicebus/hosting/windows-service
Title: Windows Service Installation
- Url: nservicebus/hosting/override-hostid
Title: Overriding the host identifier
- Url: nservicebus/hosting/override-machine-name
Title: Overriding the machine name
- Url: nservicebus/hosting/custom-configuration-providers
Title: Overriding app.config settings
- Url: nservicebus/hosting/assembly-scanning
Title: Assembly scanning
- Url: nservicebus/hosting/cooperative-cancellation
Title: Cooperative cancellation
- Url: nservicebus/hosting/critical-errors
Title: Critical Errors
- Url: nservicebus/hosting/extensions-hosting
Title: Microsoft Generic Host
- Url: nservicebus/hosting/web-application
Title: Web Application
- Url: nservicebus/hosting/azure-functions-service-bus
Title: Azure Functions with Service Bus
Articles:
- Url: nservicebus/hosting/azure-functions-service-bus/custom-triggers
Title: Custom triggers
- Url: nservicebus/hosting/azure-functions-service-bus/isolated-worker
Title: Isolated worker
- Url: previews/aws-lambda-simple-queue-service
Title: AWS Lambda with SQS
- Url: nservicebus/hosting/service-fabric-hosting
Title: Service Fabric
Articles:
- Url: nservicebus/hosting/service-fabric-hosting/hosting-gateway
Title: Hosting Gateway
- Url: nservicebus/hosting/publishing-from-web-applications
Title: Publishing from Web Applications
- Url: nservicebus/wcf
Title: Exposing endpoints via WCF
- Url: nservicebus/hosting/nservicebus-host
Title: NServiceBus Host
Articles:
- Url: nservicebus/hosting/nservicebus-host/installation
Title: Installation
- Url: nservicebus/hosting/nservicebus-host/profiles
Title: Profiles
- Url: nservicebus/hosting/nservicebus-host/profiles-customization
Title: Profiles customization
- Url: nservicebus/hosting/nservicebus-host/logging-configuration
Title: Logging configuration
- Url: nservicebus/hosting/docker-host
Title: Docker Container Host
- Url: nservicebus/hosting/cloud-services-host
Title: Azure Cloud Services Host
Articles:
- Url: nservicebus/hosting/cloud-services-host/configuration
Title: Configuration
- Url: nservicebus/hosting/cloud-services-host/logging
Title: Logging
- Url: nservicebus/hosting/cloud-services-host/startup
Title: Startup Behavior
- Url: nservicebus/hosting/cloud-services-host/shared-hosting
Title: Shared Hosting
- Url: nservicebus/hosting/cloud-services-host/critical
Title: Critical Errors
- Url: nservicebus/hosting/cloud-services-host/running-without-emulator
Title: Running without emulator
- Url: nservicebus/hosting/cloud-services-host/faq
Title: FAQ
- Url: nservicebus/lifecycle
Title: Interface lifecycles
Articles:
- Url: nservicebus/lifecycle/ineedinitialization
Title: Initialization
- Url: nservicebus/lifecycle/iwanttorunbeforeconfigurationisfinalized
Title: Before Configuration Finalized
- Url: nservicebus/lifecycle/iwanttorunwhenconfigurationiscomplete
Title: Configuration Ends
- Url: nservicebus/lifecycle/endpointstartandstop
Title: Endpoint Instance Starts and Stops
- Url: nservicebus/handlers-and-sagas
Title: Handlers and Sagas
Articles:
- Url: nservicebus/handlers/async-handlers
Title: Asynchronous Handlers
- Url: nservicebus/handlers
Title: Handlers
Articles:
- Url: nservicebus/handlers/accessing-data
Title: Accessing data
- Url: nservicebus/handlers/handler-ordering
Title: Handler Order
- Url: nservicebus/sagas
Title: Sagas
Articles:
- Url: nservicebus/sagas/message-correlation
Title: Message Correlation
- Url: nservicebus/sagas/timeouts
Title: Timeouts
- Url: nservicebus/sagas/saga-not-found
Title: Not Found
- Url: nservicebus/sagas/concurrency
Title: Concurrency
- Url: nservicebus/sagas/analyzers
Title: Roslyn analyzers
- Url: nservicebus/sagas/reply-replytooriginator-differences
Title: Reply and ReplyToOriginator differences
- Url: nservicebus/sagas/saga-audit
Title: Debugging sagas in ServiceInsight
- Url: nservicebus/sagas/saga-finding
Title: Complex finding logic
- Url: nservicebus/testing
Title: Testing
Articles:
- Url: samples/unit-testing
Title: AAA style tests
- Url: nservicebus/testing/saga-scenario-testing
Title: Saga scenario testing
- Url: nservicebus/testing/fluent
Title: Fluent style tests
- Url: nservicebus/messaging/callbacks-testing
Title: Callbacks
- Url: nservicebus/messaging/uniformsession-testing
Title: Uniform session
- Url: nservicebus/recoverability
Title: Recoverability
Articles:
- Url: nservicebus/recoverability/configure-error-handling
Title: Configure error handling
- Url: nservicebus/recoverability/configure-immediate-retries
Title: Configure immediate retries
- Url: nservicebus/recoverability/configure-delayed-retries
Title: Configure delayed retries
- Url: nservicebus/recoverability/exception-caveats
Title: Exception Caveats
- Url: nservicebus/recoverability/custom-recoverability-policy
Title: Custom Policy
- Url: nservicebus/recoverability/subscribing-to-error-notifications
Title: Error notifications
- Url: nservicebus/recoverability/pipeline
Title: Recoverability pipeline
- Url: nservicebus/pipeline
Title: Pipeline
Articles:
- Url: nservicebus/pipeline/steps-stages-connectors
Title: Steps, Stages and Connectors
- Url: nservicebus/pipeline/manipulate-with-behaviors
Title: Manipulate with Behaviors
- Url: nservicebus/pipeline/message-mutators
Title: Message Mutators
- Url: nservicebus/pipeline/unit-of-work
Title: Unit of Work
- Url: nservicebus/pipeline/aborting
Title: Abort execution
- Url: nservicebus/pipeline/events
Title: Subscribing to notification events
- Url: nservicebus/pipeline/features
Title: Features
- Url: nservicebus/pipeline/customizing-error-handling
Title: Customizing Error Handling
- Url: nservicebus/satellites
Title: Satellites
- Url: nservicebus/serialization
Title: Serialization
Articles:
- Url: nservicebus/serialization/newtonsoft
Title: Json.NET
- Url: nservicebus/serialization/json
Title: JSON
- Url: nservicebus/serialization/xml
Title: Xml
- Url: nservicebus/serialization/custom-serializer
Title: Custom
- Url: nservicebus/dependency-injection
Title: Dependency Injection
Articles:
- Url: nservicebus/dependency-injection/child-lifetime
Title: Child Lifetimes
- Url: nservicebus/dependency-injection/extensions-dependencyinjection
Title: Microsoft.Extensions.DependencyInjection
- Url: nservicebus/dependency-injection/autofac
Title: Autofac
- Url: nservicebus/dependency-injection/castlewindsor
Title: Castle Windsor
- Url: nservicebus/dependency-injection/ninject
Title: Ninject
- Url: nservicebus/dependency-injection/spring
Title: Spring
- Url: nservicebus/dependency-injection/structuremap
Title: StructureMap
- Url: nservicebus/dependency-injection/unity
Title: Unity
- Url: nservicebus/logging
Title: Logging
Articles:
- Url: nservicebus/logging/extensions-logging
Title: Microsoft.Extensions.Logging
- Url: nservicebus/logging/message-contents
Title: Message contents
- Url: nservicebus/logging/usage
Title: Writing a log entry
- Url: nservicebus/logging/log4net
Title: Log4Net
- Url: nservicebus/logging/nlog
Title: NLog
- Url: nservicebus/logging/common-logging
Title: CommonLogging
- Url: nservicebus/operations/auditing
Title: Auditing Messages
- Url: nservicebus/security
Title: Security
Articles:
- Url: nservicebus/security/generating-encryption-keys
Title: Generating secure random strong encryption keys
- Url: nservicebus/operations
Title: Operations
Articles:
- Url: platform/installer/offline
Title: Particular Service Platform Installation
- Url: nservicebus/hosting/startup-diagnostics
Title: Startup diagnostics
- Url: nservicebus/operations/transactions-message-processing
Title: Transactions and Message Processing
- Url: nservicebus/operations/auditing
Title: Auditing Messages
- Url: nservicebus/security/property-encryption
Title: Message Property Encryption
- Url: nservicebus/operations/configuring-aws
Title: NServiceBus in AWS
- Url: nservicebus/operations/dotnet-framework-version-requirements
Title: .NET Framework requirements
- Url: nservicebus/operations/installers
Title: Installers
- Url: nservicebus/operations/management-using-powershell
Title: PowerShell
- Url: nservicebus/operations/tuning
Title: Tuning endpoint message processing
- Url: nservicebus/endpoints/decommissioning-endpoints
Title: Decommissioning Endpoints
- Url: nservicebus/operations/nservicebus-analyzer
Title: NServiceBus Analyzer
- Url: nservicebus/compliance
Title: Compliance
Articles:
- Url: nservicebus/compliance/gdpr
Title: GDPR
- Url: nservicebus/compliance/fips
Title: FIPS
- Url: nservicebus/compliance/software-supply-chain
Title: Software supply chain
- Url: nservicebus/tools
Title: Tools
Articles:
- Url: nservicebus/tools/migrate-to-native-delivery
Title: Migrating timeouts
- Url: nservicebus/troubleshooting
Title: Troubleshooting
Articles:
- Url: nservicebus/troubleshooting/message-loss
Title: Message loss
- Name: Transports
Url: transports
Topics:
- Url: transports
Title: General
Articles:
- Url: transports/selecting
Title: Selecting a transport
- Url: transports/types
Title: Transport types
- Url: transports/transactions
Title: Transactions
- Url: transports/queuecreation
Title: Creating queues
- Url: transports/upgrades
Title: Upgrade Guides
Articles:
- Title: Azure Storage Queues
Articles:
- Url: transports/upgrades/asq-10to11
Title: Version 10 to 11
- Url: transports/upgrades/asq-9to10
Title: Version 9 to 10
- Url: transports/upgrades/asq-8to9
Title: Version 8 to 9
- Url: transports/upgrades/asq-7to8
Title: Version 7 to 8
- Url: transports/upgrades/asq-6to7
Title: Version 6 to 7
- Title: Azure Service Bus
Articles:
- Url: transports/upgrades/asbs-2to3
Title: Version 2 to 3
- Url: transports/upgrades/asbs-1to2
Title: Version 1 to 2
- Url: transports/upgrades/asbs-1.7to1.8
Title: Verson 1.7 to 1.8
- Title: Azure Service Bus (Legacy)
Articles:
- Url: transports/upgrades/asb-10toasbs-1
Title: Verson 10 to ASB 1
- Url: transports/upgrades/asb-9to10
Title: Version 9 to 10
- Url: transports/upgrades/asb-9to9.1
Title: Version 9 to 9.1
- Url: transports/upgrades/asb-8to9
Title: Version 8 to 9
- Url: transports/upgrades/asb-7to8
Title: Version 7 to 8
- Url: transports/upgrades/asb-6to7
Title: Version 6 to 7
- Title: RabbitMQ
Articles:
- Url: transports/upgrades/rabbitmq-6to7
Title: Version 6 to 7
- Url: transports/upgrades/rabbitmq-5to6
Title: Version 5 to 6
- Url: transports/upgrades/rabbitmq-4to5
Title: Version 4 to 5
- Url: transports/upgrades/rabbitmq-4.0to4.1
Title: Version 4.0 to 4.1
- Url: transports/upgrades/rabbitmq-3to4
Title: Version 3 to 4
- Title: SQL Server
Articles:
- Url: transports/upgrades/sqlserver-client4
Title: Microsoft.Data.SqlClient version 4
- Url: transports/upgrades/sqlserver-6to7
Title: Version 6 to 7
- Url: transports/upgrades/sqlserver-non-clustered-idx
Title: Non-clustered index in the input queue
- Url: transports/upgrades/sqlserver-5to6
Title: Version 5 to 6
- Url: transports/upgrades/sqlserver-4to5
Title: Version 4 to 5
- Url: transports/upgrades/sqlserver-31to4
Title: Version 3.1 to 4
- Url: transports/upgrades/sqlserver-3to31
Title: Version 3 to 3.1
- Url: transports/upgrades/sqlserver-unicode-headers
Title: Unicode characters in headers
- Url: transports/upgrades/sqlserver-2to3
Title: Version 2 to 3
- Url: transports/upgrades/sqlserver-2.x-2.2.4
Title: Version 2.x to 2.2.4
- Url: transports/upgrades/sqlserver-1.x-1.2.5
Title: Version 1.x to 1.2.5
- Title: Amazon SQS
Articles:
- Url: transports/upgrades/amazonsqs-5to6
Title: Version 5 to 6
- Url: transports/upgrades/amazonsqs-4to5
Title: Version 4 to 5
- Url: transports/upgrades/amazonsqs-3to4
Title: Version 3 to 4
- Url: transports/upgrades/amazonsqs-2to3
Title: Version 2 to 3
- Url: transports/upgrades/amazonsqs-1to3
Title: Version 1 to 3
- Title: MSMQ
Articles:
- Url: transports/upgrades/msmq-1to2
Title: Version 1 to 2
- Url: transports/learning
Title: Learning Transport
Articles:
- Url: transports/learning/viewing-messages
Title: Viewing content
- Url: transports/azure-service-bus
Title: Azure Service Bus
Articles:
- Url: transports/azure-service-bus/configuration
Title: Configuration
- Url: transports/azure-service-bus/native-message-access
Title: Native message access
- Url: transports/azure-service-bus/compatibility
Title: Backwards compatibility
- Url: transports/azure-service-bus/native-integration
Title: Native Integration
- Url: transports/azure-service-bus/topology
Title: Topology
- Url: transports/azure-service-bus/transaction-support
Title: Transaction support
Articles:
- Url: nservicebus/azure/understanding-transactionality-in-azure
Title: Transactions in Azure
- Url: nservicebus/azure/ways-to-live-without-transactions
Title: Avoiding Transactions
- Url: transports/azure-service-bus/operational-scripting
Title: Operational scripting
- Url: transports/azure-service-bus/legacy
Title: Azure Service Bus (Legacy)
Articles:
- Url: transports/azure-service-bus/legacy/migration
Title: Migration
- Url: transports/azure-service-bus/legacy/topologies
Title: Topologies
- Url: transports/azure-service-bus/legacy/configuration
Title: Configuration
Articles:
- Url: transports/azure-service-bus/legacy/configuration/full
Title: Full API
- Url: transports/azure-service-bus/legacy/retries
Title: Retry behavior
- Url: transports/azure-service-bus/legacy/sanitization
Title: Sanitization
- Url: transports/azure-service-bus/legacy/addressing-logic
Title: Addressing Logic
- Url: transports/azure-service-bus/legacy/securing-connection-strings
Title: Securing Namespace Connections
- Url: transports/azure-service-bus/legacy/namespace-hierarchy
Title: Namespace hierarchy
- Url: transports/azure-service-bus/legacy/token-provider
Title: Token Provider
- Title: Routing
Articles:
- Url: transports/azure-service-bus/legacy/publisher-names-configuration
Title: Publishers name configuration
- Url: transports/azure-service-bus/legacy/multiple-namespaces-support
Title: Multiple namespaces
- Url: transports/azure-service-bus/legacy/performance-tuning
Title: Performance Tuning
Articles:
- Url: transports/azure-service-bus/legacy/batching
Title: Batching
- Url: transports/azure-service-bus/legacy/message-lock-renewal
Title: Message lock renewal
- Url: transports/azure-service-bus/legacy/transaction-support
Title: Transaction Support
Articles:
- Url: nservicebus/azure/understanding-transactionality-in-azure
Title: Transactions in Azure
- Url: nservicebus/azure/ways-to-live-without-transactions
Title: Avoiding Transactions
- Url: transports/azure-service-bus/legacy/understanding-transactions-and-delivery-guarantees
Title: Internal transaction and delivery guarantees
- Url: transports/azure-service-bus/legacy/error-handling
Title: Error Handling
Articles:
- Url: transports/azure-service-bus/legacy/dlq-forwarding
Title: Forwarding
- Url: transports/azure-service-bus/legacy/oversized-sends
Title: Oversized Sends
- Url: transports/azure-service-bus/legacy/native-integration
Title: Native Integration
- Url: transports/azure-service-bus/legacy/brokered-message-creation
Title: Brokered Message Creation
- Url: transports/azure-storage-queues
Title: Azure Storage Queues
Articles:
- Url: transports/azure-storage-queues/transaction-support
Title: Transaction Support
Articles:
- Url: nservicebus/azure/understanding-transactionality-in-azure
Title: Transactions in Azure
- Url: nservicebus/azure/ways-to-live-without-transactions
Title: Avoiding Transactions
- Url: transports/azure-storage-queues/configuration
Title: Configuration
- Url: transports/azure-storage-queues/delayed-delivery
Title: Delayed Delivery
- Url: transports/azure-storage-queues/native-integration
Title: Native Integration
- Url: transports/azure-storage-queues/native-publish-subscribe
Title: Native Publish Subscribe
- Url: transports/azure-storage-queues/sanitization
Title: Sanitization
- Url: transports/azure-storage-queues/performance-tuning
Title: Performance Tuning
- Url: transports/azure-storage-queues/multi-storageaccount-support
Title: Multiple storage accounts
- Url: transports/azure-storage-queues/troubleshooting
Title: Troubleshooting
- Url: transports/sql
Title: SQL Server
Articles:
- Url: transports/sql/design
Title: Design
- Url: transports/sql/native-publish-subscribe
Title: Native publish/subscribe
- Url: transports/sql/native-delayed-delivery
Title: Native delayed delivery
- Url: transports/sql/connection-settings
Title: Connection settings
- Url: transports/sql/addressing
Title: Addressing
- Url: transports/sql/transactions
Title: Transaction support
- Url: transports/sql/discard-expired-messages
Title: Discarding expired messages
- Url: transports/sql/native-integration
Title: Native integration
- Url: transports/sql/deployment-options
Title: Deployment options
- Url: transports/sql/operations-scripting
Title: Troubleshooting and scripting
- Url: transports/sql/sql-statements
Title: SQL statements
- Url: transports/sql/entity-framework
Title: Entity Framework caveats
- Url: transports/sql/callbacks
Title: Callback support
- Url: transports/sql/sql-azure
Title: Azure SQL considerations
- Url: transports/sql/troubleshooting
Title: Troubleshooting
- Url: transports/msmq
Title: MSMQ
Articles:
- Url: transports/msmq/routing
Title: Physical routing
Articles:
- Url: transports/msmq/routing-extensibility
Title: Routing extensibility
- Url: transports/msmq/connection-strings
Title: Connection strings
- Url: transports/msmq/dead-letter-queues
Title: Dead Letter Queues
- Url: transports/msmq/viewing-message-content-in-msmq
Title: Viewing content
- Url: transports/msmq/transportconfig
Title: Configuration
Articles:
- Url: transports/msmq/discard-expired-messages
Title: Discarding expired messages
- Url: transports/msmq/troubleshooting
Title: Troubleshooting
- Url: transports/msmq/subscription-authorisation
Title: Subscription Authorization
- Url: transports/msmq/native-integration
Title: Native integration
- Url: transports/msmq/operations-scripting
Title: Scripting
- Url: transports/msmq/uninstalling-msmq
Title: Uninstalling MSMQ
- Url: transports/msmq/full-qualified-domain-name
Title: Fully Qualified Domain Names
- Url: transports/msmq/scaling-out
Title: Scaling out
- Url: transports/msmq/sender-side-distribution
Title: Scaling out with Sender-Side Distribution
- Url: transports/msmq/distributor
Title: Scaling with the Distributor
Articles:
- Url: transports/msmq/distributor/configuration
Title: Configuration
- Url: transports/msmq/distributor/deploying-to-a-cluster
Title: Deploying to Failover Cluster
- Url: transports/msmq/distributor/when-worker-goes-down
Title: When a worker goes down
- Url: transports/msmq/distributor/disconnect-workers
Title: Disconnect Workers
- Url: transports/msmq/distributor/publish-subscribe
Title: Publish-Subscribe
- Url: transports/msmq/distributor/error-handling
Title: Error handling
- Url: transports/msmq/distributor/troubleshooting
Title: Troubleshooting
- Url: transports/rabbitmq
Title: RabbitMQ
Articles:
- Url: transports/rabbitmq/connection-settings
Title: Connection settings
- Url: transports/rabbitmq/routing-topology
Title: Routing topology
- Url: transports/rabbitmq/delayed-delivery
Title: Delayed Delivery
- Url: transports/rabbitmq/native-integration
Title: Native integration
- Url: transports/rabbitmq/callbacks
Title: Callback support
- Url: transports/rabbitmq/transactions-and-delivery-guarantees
Title: Transactions and delivery guarantees
- Url: transports/rabbitmq/cluster
Title: In a cluster
- Url: transports/rabbitmq/operations-scripting
Title: Scripting
- Url: transports/sqs
Title: Amazon SQS
Articles:
- Url: transports/sqs/configuration-options
Title: Configuration Options
- Url: transports/sqs/delayed-delivery
Title: Delayed Delivery
- Url: transports/sqs/topology
Title: Topology
- Url: transports/sqs/transaction-support
Title: Transaction
- Url: transports/sqs/native-integration
Title: Native Integration
- Url: transports/sqs/operations-scripting
Title: Scripting
- Url: transports/sqs/troubleshooting
Title: Troubleshooting
- Name: Persistence
Url: persistence
Topics:
- Url: persistence
Title: General
Articles:
- Url: persistence/selecting
Title: Selecting a persister
- Url: persistence/order
Title: Persistence order
- Url: persistence/upgrades
Title: Upgrade Guides