Table of Contents

Class MethodInfoDecoratorExtensions

Namespace
Cuemon.Reflection
Assembly
Cuemon.Core.dll

Extension methods for the System.Reflection.MethodInfo class hidden behind the IDecorator<T> interface.

public static class MethodInfoDecoratorExtensions
Inheritance
Object
MethodInfoDecoratorExtensions

Methods

IsOverridden(IDecorator<MethodInfo>)

Determines whether the underlying System.Reflection.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 System.Reflection.MethodInfo of the decorator has been overridden; otherwise, false.

Exceptions

System.ArgumentNullException

decorator cannot be null.

See Also