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 |
---|---|---|
Type | target | The inspected type. |
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<Type> |