Configuring your WCF Web Apis
Posted by: Pablo M. Cibraro (aka Cibrax),
on 19 Apr 2011 |
View original | Bookmarked: 0 time(s)
Another major improvement in this new WCF Web Api release is the introduction of a fluent API for configuring your WCF Web Apis. All the available extensibility points in the current bits are now exposed through this API making possible to easily discover them. Lets discuss in detail how this new configuration API looks like and what extensibility points you have today. var config = HttpHostConfiguration.Create().
SetOperationHandlerFactory<ContactManagerOperationHandlerFactory>().
...