C# Class 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.
Inheritance: System.Exception
Datei anzeigen Open project: PombeirP/Unity.TypedFactories

Private Properties

Property Type Description

Public Methods

Method Description
ConstructorArgumentsMismatchException ( string message, Type typedFactoryType, ParameterInfo nonMatchingParameters, Microsoft.Practices.Unity.ResolutionFailedException innerException ) : System

Initializes a new instance of the ConstructorArgumentsMismatchException class.

Method Details

ConstructorArgumentsMismatchException() public method

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. ///
return System