- Timestamp:
- Aug 11, 2021, 6:22:03 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/Handlers/PathHandler.cs
r351 r367 3 3 namespace AllocsFixes.NetConnections.Servers.Web.Handlers { 4 4 public abstract class PathHandler { 5 private readonly string moduleName; 5 protected readonly string moduleName; 6 protected string urlBasePath; 7 protected Web parent; 6 8 7 9 protected PathHandler (string _moduleName, int _defaultPermissionLevel = 0) { … … 24 26 return true; 25 27 } 28 29 public virtual void Shutdown () { 30 } 31 32 public virtual void SetBasePathAndParent (Web _parent, string _relativePath) { 33 parent = _parent; 34 urlBasePath = _relativePath; 35 } 26 36 } 27 37 }
Note:
See TracChangeset
for help on using the changeset viewer.