I am sure this is a stupid question, as I am assuming the answer is "When the object is instanciated by Ninject"... but I want to double check...
To give a little more context as to why I am asking the question, I have an asp mvc app which implements NinjectHttpApplication. However within the OnApplicationStarted override I need to activate a method on a singleton instance that is bound within Ninject.
The problem is that the Kernel is exposed but shouldn't be used as a service locator, so I could get the object back from that and call DoSomeSetup(); method, but that seems like a fail. To my knowledge the NinjectHttpApplication instance isnt DI'd as the Global.asax file uses it directly, so I couldnt DI it into the application that way.
This leaves me with one other option which would be to add the OnActivation(x=>x.DoSomeSetup()); call to the binding, however this object is only used in certain places, so its not like the first time you load a page it would be required by the controller, so if OnActivation waits for the first instance to be created it may not happen for a while.
Hopefully thats not too confusing :)