Database Reference
In-Depth Information
Name
Description
Detailed link
This contains the properties that represent the
MsmqSubscriptionStorage configuration sec-
tion.
http://docs.particular.net/NServiceBus/publish-
subscribe-configuration
MsmqSubscriptionStorage
http://docs.particular.net/NServiceBus/encryption-
sample
RijndaelEncryptionServiceConfig
The AES encryption service
This is the section for retrying multiple times
after error
http://docs.particular.net/NServiceBus//second-
level-retries
SecondLevelRetriesConfig
http://docs.particular.net/NServiceBus/msmqtrans-
portconfig
TransportConfig
This is a configuration section for UnicastBus-
specific settings.
http://docs.particular.net/NServiceBus/hosting-
nservicebus-in-your-own-process
UnicastBusConfig
To view the different sections of the app.config file in the code, we can pull out the
configurations through the NSB code with something as simple as the following:
namespace MyMessages
{
[Serializable]
// Reading configurations from App configuration
UnicastBusConfig unicastBusCfg =
Configure.GetConfigSection<UnicastBusConfig>();
Logging loggingCfg = Configure.GetConfigSection<Logging>();
TransportConfig transportCfg =
Configure.GetConfigSection<TransportConfig>();
SecondLevelRetriesConfig secondCfg =
Configure.GetConfigSection<SecondLevelRetriesConfig>();
AuditConfig auditCfg =
Configure.GetConfigSection<AuditConfig>();
MsmqSubscriptionStorageConfig endpoinsCfg
Configure.GetConfigSection<MsmqSubscriptionStorageConfig>();
We can view the details in Visual Studio as we step through the code.
Search WWH ::




Custom Search