Repository pattern for loosely coupled enterprise systems.
Contains generic method signatures for Get (including get using paging) and CRUD operations.
Designed for speed and efficiency (i.e. no iteration / counting of messages using .NET managed code or WMI calls).
Uses 'Unsafe' PInvoke with native MSMQ API.
Use this component where automated Aweber list management is needed from, for example, back end services such as user registration in web applications.
**ABOUT**
Aweber offers excellent email campaign list management services and is mainly geared for capturing email addresses via its own javascript...
More information
Logging pattern for loosely coupled enterprise systems.
Contains method signatures for logging and logger formatting.
Create logger and associated formatter by implementing ILoggerFactory.
Pattern for software integration with cloud based email service provider list management processes.
Most list management services offer email based SUBSCRIBE and UNSUBSCRIBE methods to add / remove users to mailing lists.
This library provides a general pattern / interface for integration with such...
More information
Extension methods to map naming conventions between WCF endpoints and URI for MSMQ.
This library can perform mappings in both directions (i.e. WCR -> URI or URI -> WCF).
Example usage:
string myUri = ".\private$\MyQueue";
string mappedToWcf = myUri.ToWcf();
Gives...
More information