Skip to content

Instantly share code, notes, and snippets.

@kkozmic
Created January 22, 2010 20:14
Show Gist options
  • Save kkozmic/284088 to your computer and use it in GitHub Desktop.
Save kkozmic/284088 to your computer and use it in GitHub Desktop.
public class ConcreteLoader : ILazyComponentLoader
{
public IRegistration Load(string key, Type service)
{
// to make sure it really is concrete type
if (!(service.IsClass&&service.IsAbstract==false))
{
return null;
}
return Component.For(service).Named(key);
}
}
// and you just register the loader in the container. That's all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment