Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Last active September 20, 2017 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitvijay/3235edbd3991f19dbf735914185b5b9c to your computer and use it in GitHub Desktop.
Save ankitvijay/3235edbd3991f19dbf735914185b5b9c to your computer and use it in GitHub Desktop.
Castle Windsor Lifestle Override
public class PerWebRequestLifestyleOverrider : IContributeComponentModelConstruction
{
public void ProcessModel(IKernel kernel, ComponentModel model)
{
if (model.LifestyleType == LifestyleType.PerWebRequest)
{
model.LifestyleType = LifestyleType.Singleton;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment