BadScript 2
Loading...
Searching...
No Matches
BadImportHandler.cs
Go to the documentation of this file.
2
4
8public abstract class BadImportHandler
9{
10 public abstract bool IsTransient();
11
17 public abstract bool Has(string path);
18
24 public abstract string GetHash(string path);
25
31 public abstract IEnumerable<BadObject> Get(string path);
32}
Defines the shape of the import handler for the module importer.
IEnumerable< BadObject > Get(string path)
Imports a module from the specified path.
bool Has(string path)
Returns true if the specified path is available.
string GetHash(string path)
Returns a unique hash for the specified path.
Contains the Runtime Objects.
Definition BadArray.cs:10