Class MissingConstructorException
Indicates that requested constructor doesn't exist.
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public sealed class MissingConstructorException : ConstraintViolationException
  Constructors
| Improve this Doc View SourceMissingConstructorException(Type, Type[])
Initializes a new exception indicating that requested constructor doesn't exist.
Declaration
public MissingConstructorException(Type target, params Type[] parameters)
  Parameters
| Type | Name | Description | 
|---|---|---|
| DotNext.Reflection.Type | target | The inspected type.  | 
      
| DotNext.Reflection.Type[] | parameters | An array of types representing constructor parameters.  | 
      
Properties
| Improve this Doc View SourceParameters
An array of types representing constructor parameters.
Declaration
public IReadOnlyList<Type> Parameters { get; }
  Property Value
| Type | Description | 
|---|---|
| IReadOnlyList<DotNext.Reflection.Type> |