document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class DelegatedInjectionValue<TValue> : TypedInjectionValue
  2. {
  3.     public override IDependencyResolverPolicy GetResolverPolicy(Type typeToBuild)
  4.     {
  5.         return new DelegatedInjectionValueResolverPolicy(typeToBuild, ValueName, InjectionDelegate);
  6.     }
  7. }
');