python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Windsor - how to register against two interfaces but separate registration lines
I currently register a large number of classes using this one-line syntax:
container.Register(Classes.FromThisAssembly().BasedOn<IWidgetViewModel>().WithService.Base().LifestyleSingleton());
On...

Andrew Stephens
Votes: 0
Answers: 1
How to inject a collection of a service into a strategy implementing that same service?
I have a service IService and an implementation StrategyService like that:
interface IService
{
// interface declaration here
}
class StrategyService: IService
{
IService[] services;
Str...
Hemel
Votes: 0
Answers: 1
SignalR Castle Windsor - Is it possible to have different lifestyle for the same Castle Windsor container?
I'm using Castle Windsor as IOC in a Web Application, in this Web application I'm also using SignalR. To instanciate my signalR Hub i'm using a class that implements the IHubActivator SignalR interfac...
ZeniFlow
Votes: 0
Answers: 0
Castle Windsor resolving more dependencies than it releases with SignalR Activator
I don't know if my analyse is correct or not. But i'm facing some memory leak with castle and SignalR. It's a well known "issue" for Transient registered components see for example (SignalR ...
ZeniFlow
Votes: 0
Answers: 0