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
Type declaringType

The inspected type.

String methodName

The name of the method.

Type returnType

The return type of the missing method.

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<Type>
| Improve this Doc View Source

ReturnType

Gets return type of missing method.

Declaration
public Type ReturnType { get; }
Property Value
Type Description
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)
ObjectExtensions.GetUserData<T>(T)
ObjectExtensions.IsOneOf<T>(T, IEnumerable<T>)
ObjectExtensions.IsOneOf<T>(T, T[])
ObjectExtensions.Decompose<T, TResult1, TResult2>(T, Func<T, TResult1>, Func<T, TResult2>, out TResult1, out TResult2)
ObjectExtensions.Decompose<T, TResult1, TResult2>(T, ValueFunc<T, TResult1>, ValueFunc<T, TResult2>, out TResult1, out TResult2)
ObjectExtensions.Decompose<T, TResult1, TResult2>(T, Func<T, TResult1>, Func<T, TResult2>)
ObjectExtensions.Decompose<T, TResult1, TResult2>(T, ValueFunc<T, TResult1>, ValueFunc<T, TResult2>)
ObjectExtensions.As<T>(T)
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)
ExpressionBuilder.Const<T>(T)
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX