Interface IModule
Definition of a module.
Namespace: Sartorius.SAF.Presentation.Modularity
Assembly: Sartorius.SAF.Presentation.dll
Syntax
public interface IModule
Properties
View SourceCaption
Gets the display name of the module.
Declaration
string Caption { get; }
Property Value
Type | Description |
---|---|
System.String |
Description
Gets the module description.
Declaration
string Description { get; }
Property Value
Type | Description |
---|---|
System.String |
Id
Gets the module id.
Declaration
string Id { get; }
Property Value
Type | Description |
---|---|
System.String |
IsEnabled
Indicates whether this module is enabled.
Declaration
bool IsEnabled { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
For security reasons, this property should be checked in the Initialize() implementation before executing any code.
Methods
View SourceInitialize()
Initializes this instance.
Declaration
void Initialize()