Table of Contents

Class ModuleNameAttribute

Namespace
Dynamicweb.Modules.Annotations
Assembly
Dynamicweb.dll

Provides information about the module.

[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class ModuleNameAttribute : Attribute
Inheritance
ModuleNameAttribute
Inherited Members

Constructors

ModuleNameAttribute(string)

Initializes a new instance of the ModuleNameAttribute class.

public ModuleNameAttribute(string systemName)

Parameters

systemName string

System name of the module.

ModuleNameAttribute(string, string)

Initializes a new instance of the ModuleNameAttribute class.

public ModuleNameAttribute(string systemName, string name)

Parameters

systemName string

System name of module.

name string

Name of the module.

Properties

Name

Gets or sets the name.

public string? Name { get; set; }

Property Value

string

The name.

SystemName

Gets or sets the systemname.

public string SystemName { get; set; }

Property Value

string

The systemname.

See Also

To top