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
파일 보기 프로젝트 열기: PombeirP/Unity.TypedFactories

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