Interface IModule
Represents the module information for a module folder.
Namespace: Snowflake.Loader
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public interface IModule
Properties
Author
Gets the author of the module as specified in the module manifest.
Declaration
string Author { get; }
Property Value
Type | Description |
---|---|
System. |
ContentsDirectory
Gets the directory where the module contents are located.
Declaration
DirectoryInfo ContentsDirectory { get; }
Property Value
Type | Description |
---|---|
System. |
DisplayName
Gets the display name of the module.
Declaration
string DisplayName { get; }
Property Value
Type | Description |
---|---|
System. |
Entry
Gets the entrypoint of the module as specified in the module manifest.
Declaration
string Entry { get; }
Property Value
Type | Description |
---|---|
System. |
Loader
Gets the loader of the module as specified in the module manifest.
Declaration
string Loader { get; }
Property Value
Type | Description |
---|---|
System. |
ModuleDirectory
Gets the directory whether the module contents folder is contained.
Declaration
DirectoryInfo ModuleDirectory { get; }
Property Value
Type | Description |
---|---|
System. |
Name
Gets the name of the module.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System. |
Version
The version of this module.
Declaration
Version Version { get; }
Property Value
Type | Description |
---|---|
System. |