Interface ITrinityComponent
- Namespace
- AbanoubNassem.Trinity.Components.Interfaces
- Assembly
- AbanoubNassem.Trinity.dll
The Basic Trinity Component definition.
public interface ITrinityComponent
Properties
ComponentName
The component name in the front-end side.
string ComponentName { get; }
Property Value
Hidden
Whether the component is hidden or not.
bool Hidden { get; set; }
Property Value
Visible
Whether the component is visible or not.
bool Visible { get; protected set; }
Property Value
Methods
Setup()
Setup is being called on each request, once the Component is resolved. Can be used to resolve extra Services or do some logic before using the Component.
void Setup()