Last active
December 4, 2017 12:35
-
-
Save SaschaHeyer/dafb21a4de22cde049a1479dd325a957 to your computer and use it in GitHub Desktop.
DefaultFirstConstructorBehavior
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DefaultFirstConstructorBehavior : IConstructorResolutionBehavior | |
{ | |
private readonly IConstructorResolutionBehavior fallbackBehavior; | |
public DefaultFirstConstructorBehavior(Container container) | |
{ | |
this.fallbackBehavior = container.Options.ConstructorResolutionBehavior; | |
} | |
public ConstructorInfo GetConstructor(Type serviceType, Type implementationType) | |
{ | |
ConstructorInfo[] constructors = implementationType.GetConstructors(); | |
return (from constructor in constructors orderby constructor.GetParameters().Length select constructor).FirstOrDefault() ?? | |
this.fallbackBehavior.GetConstructor(serviceType, implementationType); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment