BoC.InversionOfControl.SimpleInjector.AllowMultipleConstructorResolutionBehavior.GetConstructor C# (CSharp) Method

GetConstructor() public method

public GetConstructor ( Type serviceType, Type implementationType ) : ConstructorInfo
serviceType System.Type
implementationType System.Type
return System.Reflection.ConstructorInfo
        public ConstructorInfo GetConstructor(Type serviceType, Type implementationType)
        {
            VerifyTypeIsConcrete(implementationType);
              return GetSinglePublicConstructor(implementationType);
        }