Fixes to Pipeline Generator
Posted by: AspNetResources.com articles, news and updates,
on 06 Jun 2005 |
View original | Bookmarked: 0 time(s)
No, I’m not talking about power outages or oil pipelines. I’m talking about my online tool (see launch announcement) which generates templates of HttpModules, HttpHandlers, and HttpHandlerFactorys [sic]. Brad Greubel brought to my attention that the generator was producing incorrect code in VB.NET: CodeDOM was emitting code Inheriting interfaces, instead of Implementing them.
Normally, I would add the following code when a class implements a certain interface:
CodeTypeDeclaration cls...