Skip to content

Instantly share code, notes, and snippets.

@kkozmic
Created December 5, 2009 16:18
Show Gist options
  • Save kkozmic/249744 to your computer and use it in GitHub Desktop.
Save kkozmic/249744 to your computer and use it in GitHub Desktop.
// instead of this
Component.For<ITwo>().ImplementedBy<Two>().LifeStyle.PerWcfSession().Interceptors(
InterceptorReference.ForType<CollectingInterceptor>()).Anywhere
// do this
Component.For<ITwo>().ImplementedBy<Two>().LifeStyle.PerWcfSession().InterceptedBy<CollectingInterceptor>()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment