Method | Description | |
---|---|---|
FindType ( |
Finds the first matching type in Rock or any of the assemblies that reference Rock
|
|
FindTypes ( |
Finds the all the types that implement or inherit from the baseType. The baseType will not be included in the result
|
|
GetCategory ( |
Returns the Category Attribute value for a given type
|
|
GetDbContextForEntityType ( |
Gets the appropriate DbContext based on the entity type
|
|
GetDescription ( |
Returns the Description Attribute value for a given type
|
|
GetDisplayName ( |
Returns the DisplayName Attribute value for a given type
|
|
GetServiceForEntityType ( |
Gets the appropriate Rock.Data.IService based on the entity type
|
|
SearchAssembly ( |
Searches the assembly.
|
public static FindType ( |
||
baseType | Type of the base. | |
typeName | string | Name of the type. |
return |
public static FindTypes ( |
||
baseType | base type. | |
typeName | string | typeName can be specified to filter it to a specific type name |
return | Type>.SortedDictionary |
public static GetCategory ( |
||
type | ||
return | string |
public static GetDbContextForEntityType ( |
||
entityType | Type of the Entity. | |
return | System.Data.Entity.DbContext |
public static GetDescription ( |
||
type | ||
return | string |
public static GetDisplayName ( |
||
type | ||
return | string |
public static GetServiceForEntityType ( |
||
entityType | Type of the Entity. | |
dbContext | System | The database context. |
return | Rock.Data.IService |
public static SearchAssembly ( |
||
assembly | The assembly. | |
baseType | Type of the base. | |
return | Type>.Dictionary |