Class MethodInfoDecoratorExtensions
- Namespace
- Cuemon.Reflection
- Assembly
- Cuemon.Core.dll
Extension methods for the MethodInfo class hidden behind the IDecorator<T> interface.
public static class MethodInfoDecoratorExtensions
- Inheritance
-
MethodInfoDecoratorExtensions
Methods
IsOverridden(IDecorator<MethodInfo>)
Determines whether the underlying MethodInfo of the decorator has been overridden.
public static bool IsOverridden(this IDecorator<MethodInfo> decorator)
Parameters
decoratorIDecorator<MethodInfo>The IDecorator<T> to extend.
Returns
- bool
trueif the underlying MethodInfo of thedecoratorhas been overridden; otherwise,false.
Exceptions
- ArgumentNullException
decoratorcannot be null.
See Also
IDecorator<T>
Decorator<T>