Func<T> injecting with Windsor container
Posted
by yang
on Stack Overflow
See other posts from Stack Overflow
or by yang
Published on 2010-04-08T13:40:06Z
Indexed on
2010/04/08
13:43 UTC
Read the original article
Hit count: 296
castle-windsor
Here is a code excerpt from AspComet project that works with Autofac.
public MessageBus(IClientRepository clientRepository, Func<IMessagesProcessor> messagesProcessorFactoryMethod)
{
this.clientRepository = clientRepository;
this.messagesProcessorFactoryMethod = messagesProcessorFactoryMethod;
}
How can I inject "Func<IMessagesProcessor> messagesProcessorFactoryMethod
" with Windsor, is it possible?
Thanks.
© Stack Overflow or respective owner