C# Класс Unity.TypedFactories.ConstructorArgumentsMismatchException

Exception thrown when the arguments supplied in a typed factory method do not fulfill the arguments required by a concrete class' constructors.
Наследование: System.Exception
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
ConstructorArgumentsMismatchException ( string message, Type typedFactoryType, ParameterInfo nonMatchingParameters, Microsoft.Practices.Unity.ResolutionFailedException innerException ) : System

Initializes a new instance of the ConstructorArgumentsMismatchException class.

Описание методов

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

Initializes a new instance of the ConstructorArgumentsMismatchException class.
public ConstructorArgumentsMismatchException ( string message, Type typedFactoryType, ParameterInfo nonMatchingParameters, Microsoft.Practices.Unity.ResolutionFailedException innerException ) : System
message string /// The message. ///
typedFactoryType System.Type /// The type of the factory interface. ///
nonMatchingParameters System.Reflection.ParameterInfo /// The list of non-matching parameters. ///
innerException Microsoft.Practices.Unity.ResolutionFailedException /// The inner exception, documenting the resolution failure. ///
Результат System