Interface IReflectionService
Provides reflection-related functionality.
Namespace: DataWeb.Reflection
Assembly: DataWeb.Core.dll
Syntax
public interface IReflectionService
Methods
GetAssembly(string)
Gets the assembly for the specified class.
Declaration
Assembly GetAssembly(string className)
Parameters
| Type | Name | Description |
|---|---|---|
| string | className | The full class name including the assembly information. |
Returns
| Type | Description |
|---|---|
| Assembly | The assembly for the specified class. |
GetClassName(string)
Gets the class name without the assembly information.
Declaration
string GetClassName(string className)
Parameters
| Type | Name | Description |
|---|---|---|
| string | className | The full class name including the assembly information. |
Returns
| Type | Description |
|---|---|
| string | The class name without the assembly information. |