fix logic issue in url mapping, improve 404 handling, add property change component notifications

This commit is contained in:
Shaun Walker
2022-04-04 17:16:12 -04:00
parent 683ad8959a
commit 042083c0e7
5 changed files with 149 additions and 4 deletions

View File

@ -9,5 +9,10 @@ namespace Oqtane.Shared
public string AntiForgeryToken { get; set; } // passed from server for use in service calls on client
public string AuthorizationToken { get; set; } // passed from server for use in service calls on client
public string RemoteIPAddress { get; set; } // passed from server as cannot be reliable retrieved on client
private dynamic _properties;
public dynamic Properties => _properties ?? (_properties = new PropertyDictionary());
}
}