Catel.IoC.TypeFactory.CreateInstanceWithParametersAndAutoCompletion C# (CSharp) Метод

CreateInstanceWithParametersAndAutoCompletion() публичный Метод

Creates an instance of the specified type using the specified parameters as injection values. This method will also auto-complete any additional dependencies that can be resolved from the IServiceLocator.
The is null.
public CreateInstanceWithParametersAndAutoCompletion ( Type typeToConstruct ) : object
typeToConstruct System.Type The type to construct.
Результат object
        public object CreateInstanceWithParametersAndAutoCompletion(Type typeToConstruct, params object[] parameters)
        {
            return CreateInstanceWithParametersAndAutoCompletionWithTag(typeToConstruct, null, parameters);
        }