@namespace Oqtane.Modules.Admin.SystemInfo
@inherits ModuleBase
|
@_version
|
|
@_runtime
|
|
@_netcore
|
|
@_serverpath
|
|
@_servertime
|
@code {
public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.Host;
private string _version = string.Empty;
private string _runtime = string.Empty;
private string _netcore = string.Empty;
private string _serverpath = string.Empty;
private string _servertime = string.Empty;
protected override void OnInitialized()
{
_version = Constants.Version;
_runtime = PageState.Runtime.ToString();
_netcore = string.Empty;
_serverpath = string.Empty;
_servertime = string.Empty;
}
}