Class ReflectionService
Provides reflection-related functionality.
Implements
Inherited Members
Namespace: DataWeb.Reflection
Assembly: DataWeb.Core.dll
Syntax
public class ReflectionService : IReflectionService
Remarks
Initializes a new instance of the ReflectionService class.
Constructors
ReflectionService()
Provides reflection-related functionality.
Declaration
public ReflectionService()
Remarks
Initializes a new instance of the ReflectionService class.
Methods
GetAssembly(string)
Gets the assembly for the specified class.
Declaration
public 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
public 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. |