Show / Hide Table of Contents

Class MissingMethodException

Indicates that requested method doesn't exist.

Inheritance
Object
ConstraintViolationException
MissingMethodException
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public sealed class MissingMethodException : ConstraintViolationException

Constructors

| Improve this Doc View Source

MissingMethodException(Type, String, Type, Type[])

Initializes a new exception indicating that requested method doesn't exist.

Declaration
public MissingMethodException(Type declaringType, string methodName, Type returnType, params Type[] parameters)
Parameters
Type Name Description
DotNext.Reflection.Type declaringType

The inspected type.

String methodName

The name of the method.

DotNext.Reflection.Type returnType

The return type of the missing method.

DotNext.Reflection.Type[] parameters

The parameters of the missing method.

Properties

| Improve this Doc View Source

MethodName

Gets name of missing method.

Declaration
public string MethodName { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Parameters

Gets parameters of missing method.

Declaration
public IReadOnlyList<Type> Parameters { get; }
Property Value
Type Description
IReadOnlyList<DotNext.Reflection.Type>
| Improve this Doc View Source

ReturnType

Gets return type of missing method.

Declaration
public Type ReturnType { get; }
Property Value
Type Description
DotNext.Reflection.Type

Extension Methods

AsyncLockAcquisition.AcquireLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireLockAsync<T>(T, CancellationToken)
AsyncLockAcquisition.AcquireReadLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireReadLockAsync<T>(T, CancellationToken)
AsyncLockAcquisition.AcquireWriteLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireWriteLockAsync<T>(T, CancellationToken)
AsyncLockAcquisition.AcquireUpgradeableReadLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireUpgradeableReadLockAsync<T>(T, CancellationToken)
ExpressionBuilder.Const<T>(T)
ObjectExtensions.GetUserData<T>(T)
ObjectExtensions.IsOneOf<T>(T, IEnumerable<T>)
ObjectExtensions.IsOneOf<T>(T, T[])
ObjectExtensions.Decompose<T, R1, R2>(T, Func<T, R1>, Func<T, R2>, out R1, out R2)
ObjectExtensions.Decompose<T, R1, R2>(T, ValueFunc<T, R1>, ValueFunc<T, R2>, out R1, out R2)
ObjectExtensions.Decompose<T, R1, R2>(T, Func<T, R1>, Func<T, R2>)
ObjectExtensions.Decompose<T, R1, R2>(T, ValueFunc<T, R1>, ValueFunc<T, R2>)
LockAcquisition.AcquireReadLock<T>(T)
LockAcquisition.AcquireReadLock<T>(T, TimeSpan)
LockAcquisition.AcquireWriteLock<T>(T)
LockAcquisition.AcquireWriteLock<T>(T, TimeSpan)
LockAcquisition.AcquireUpgradeableReadLock<T>(T)
LockAcquisition.AcquireUpgradeableReadLock<T>(T, TimeSpan)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX