Method | Description | |
---|---|---|
DoesMatchInterfaceOf ( this target, |
Tests all members of the target against a supplied interface to determine if it implements it 'In spirit' if not physically.
|
|
IsEquivalentTo ( this first, |
Tests two MethodInfo's for return, public and parameter list equivalence
|
|
IsEquivalentTo ( this first, |
Tests two lists of parameters for length and type equivalence
|
|
IsSupersetOf ( this target, |
Tests if a property is the superset of another one e.g. the same type and at least the same accessors
|
public static DoesMatchInterfaceOf ( this target, |
||
target | this | The type to test |
thisInterface | The interface to test against | |
return | bool |
public static IsEquivalentTo ( this first, |
||
first | this | |
second | ||
return | bool |
public static IsEquivalentTo ( this first, |
||
first | this | |
second | ||
return | bool |
public static IsSupersetOf ( this target, |
||
target | this | The property to test. This can have more accessible accessors than the baseline. |
baseline | The baseline, which specifies the type and minimum access levels. | |
return | bool |