Show / Hide Table of Contents

Interface IModule

Definition of a module.

Namespace: Sartorius.SAF.Presentation.Modularity
Assembly: Sartorius.SAF.Presentation.dll
Syntax
public interface IModule

Properties

View Source

Caption

Gets the display name of the module.

Declaration
string Caption { get; }
Property Value
Type Description
System.String
View Source

Description

Gets the module description.

Declaration
string Description { get; }
Property Value
Type Description
System.String
View Source

Id

Gets the module id.

Declaration
string Id { get; }
Property Value
Type Description
System.String
View Source

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 Source

Initialize()

Initializes this instance.

Declaration
void Initialize()

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX