Class ClientModuleDescriptor
Class represents a SystemJs module.
public class ClientModuleDescriptor
- Inheritance
-
objectClientModuleDescriptor
- Extension Methods
Constructors
ClientModuleDescriptor(string, string, string)
Creates a new instance of the ClientModuleDescriptor class.
public ClientModuleDescriptor(string moduleName, string path, string productionPath = null)
Parameters
moduleName
stringModule name.
path
stringPath to the module.
productionPath
stringPath to the module in production mode.
Properties
Name
Name of the module.
public string Name { get; }
Property Value
- string
Path
Path to the module used in a development mode or as a fallback path when ProductionPath is not defined.
public string Path { get; }
Property Value
- string
ProductionPath
Production path for client script.
public string ProductionPath { get; }
Property Value
- string