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
decorator
IDecorator<MethodInfo>The IDecorator<T> to extend.
Returns
- Boolean
true
if the underlying MethodInfo of thedecorator
has been overridden; otherwise,false
.
Exceptions
- ArgumentNullException
decorator
cannot be null.
See Also
IDecorator<T>
Decorator<T>