程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#發現之旅:C#開發Windows Service程序(下)(2)

C#發現之旅:C#開發Windows Service程序(下)(2)

編輯:關於C語言

該對話框 比較簡單,就是用於顯示和修改系統配置信息對象MyConfig中的內容。由於文件系統監視服 務只有在啟動的時候讀取系統配置信息,因此對系統配置的任何修改都需要重新啟動服務才 能生效。

系統配置信息對象 MyConfig

系統配置信息對象MyConfig用於讀取和 修改保存在數據表SystemConfig中的系統配置信息。其包含的配置信息的代碼如下

private bool bolLogRenamed = true;
/// <summary>
/// 是否記錄重命名事件
/// </summary>
public bool LogRenamed
{
    get { return bolLogRenamed; }
    set { bolLogRenamed = value; }
}

private bool bolLogChanged = true;
/// <summary>
/// 是否記錄文件修改事件
/// </summary>
public bool LogChanged
{
    get { return bolLogChanged; }
    set { bolLogChanged = value; }
}
private bool bolLogCreated = true;
/// <summary>
/// 是否記錄對象創建事件
/// </summary>
public bool LogCreated
{
    get { return bolLogCreated; }
    set { bolLogCreated = value; }
}
private bool bolLogDeleted = true;
/// <summary>
/// 是否記錄對象刪除事件
/// </summary>
public bool LogDeleted
{
    get { return bolLogDeleted; }
    set { bolLogDeleted = value; }
}

private string[] myWatchedPaths = null;
/// <summary>
/// 監視的目錄
/// </summary>
public string[] WatchedPaths
{
    get { return myWatchedPaths; }
    set { myWatchedPaths = value; }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved