Method | Description | |
---|---|---|
GetDerivedTypes ( this type, |
Find all derived types from assembly. If assembly is not given, given type assembly is used.
|
|
GetDerivedTypes ( this type, bool includeItself, |
Find all derived types from assembly. If assembly is not given, given type assembly is used.
|
|
GetPrivateFieldValue ( this obj, string propName ) : object |
Returns a private Property Value from a given Object. Uses Reflection. Throws a ArgumentOutOfRangeException if the Property is not found.
|
|
GetProperty ( this type, string propertyName, char separator ) : |
|
|
GetPropertyValue ( this obj, string propertyName, char separator = '.' ) : object |
|
|
IsNullable ( this type, |
|
public static GetDerivedTypes ( this type, |
||
type | this | |
assembly | ||
return | System.Type[] |
public static GetDerivedTypes ( this type, bool includeItself, |
||
type | this | |
includeItself | bool | |
assembly | ||
return | System.Type[] |
public static GetPrivateFieldValue ( this obj, string propName ) : object | ||
obj | this | Object from where the Property Value is returned |
propName | string | Propertyname as string. |
return | object |
public static GetProperty ( this type, string propertyName, char separator ) : |
||
type | this | |
propertyName | string | |
separator | char | |
return |
public static GetPropertyValue ( this obj, string propertyName, char separator = '.' ) : object | ||
obj | this | |
propertyName | string | |
separator | char | |
return | object |
public static IsNullable ( this type, |
||
type | this | |
argumentType | ||
return | bool |