Table of Contents

Class Module

Namespace
Dynamicweb.Modules
Assembly
Dynamicweb.dll

Represents a module registration in Dynamicweb database

[PermissionEntity("Module")]
public class Module : IPermissionEntity, IPermissionEntityLookup
Inheritance
Module
Implements
Inherited Members
Extension Methods

Constructors

Module()

Initializes a new instance of the Module class.

public Module()

Module(string)

Initializes a new instance of the Module class.

public Module(string moduleSystemName)

Parameters

moduleSystemName string

System name of the module.

Properties

Access

Gets or sets a value indicating whether this Module is access.

public bool Access { get; set; }

Property Value

bool

true if access; otherwise, false.

Description

Gets or sets the description.

public string Description { get; set; }

Property Value

string

The description.

EcomNotInstalledAccess

public bool EcomNotInstalledAccess { get; set; }

Property Value

bool

HiddenMode

public bool HiddenMode { get; set; }

Property Value

bool

ID

Gets or sets the ID.

public int ID { get; set; }

Property Value

int

The ID.

IconClass

Gets or sets the module icon.

public KnownIcon IconClass { get; set; }

Property Value

KnownIcon

A value of the KnownIcon

IsBeta

Gets or sets a value indicating whether this instance is beta.

public bool IsBeta { get; set; }

Property Value

bool

true if this instance is beta; otherwise, false.

Name

Gets or sets the name.

public string Name { get; set; }

Property Value

string

The name.

Paragraph

Gets or sets a value indicating whether this Module is paragraph.

public bool Paragraph { get; set; }

Property Value

bool

true if paragraph; otherwise, false.

SearchSettings

Gets or sets the search settings.

public ModuleSearchSettings SearchSettings { get; set; }

Property Value

ModuleSearchSettings

The search settings.

Sort

Gets or sets the sort.

public int Sort { get; set; }

Property Value

int

The sort.

SystemName

Gets or sets the name of the system.

public string SystemName { get; set; }

Property Value

string

The name of the system.

To top