📄 systemdiagnosticsinfo.cs
字号:
namespace PowerEasy.WebSite.Admin.Profile
{
using System;
public class SystemDiagnosticsInfo
{
private string m_Caches;
private string m_CpuUseRatio;
private string m_Memory;
private string m_Runtime;
private string m_ScriptTimeOut;
private string m_SessionCount;
private string m_StartTime;
public string Caches
{
get
{
return this.m_Caches;
}
set
{
this.m_Caches = value;
}
}
public string CpuUseRatio
{
get
{
return this.m_CpuUseRatio;
}
set
{
this.m_CpuUseRatio = value;
}
}
public string Memory
{
get
{
return this.m_Memory;
}
set
{
this.m_Memory = value;
}
}
public string Runtime
{
get
{
return this.m_Runtime;
}
set
{
this.m_Runtime = value;
}
}
public string ScriptTimeOut
{
get
{
return this.m_ScriptTimeOut;
}
set
{
this.m_ScriptTimeOut = value;
}
}
public string SessionCount
{
get
{
return this.m_SessionCount;
}
set
{
this.m_SessionCount = value;
}
}
public string StartTime
{
get
{
return this.m_StartTime;
}
set
{
this.m_StartTime = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -