コード例 #1
0
ファイル: process_watcher.cs プロジェクト: qq5013/mERP-HD
        public Watcher(string path, string entityName, string propertyName)
        {
            this.path         = path;
            this.entityName   = entityName;
            this.propertyName = propertyName;

            m_timer = new WatcherTimer(OnChanged, OnRenamed, 60000);
        }
コード例 #2
0
ファイル: process_watcher.cs プロジェクト: qq5013/mERP-HD
        private string propertyName = null; // 属性名称,无用

        #endregion Fields

        #region Constructors

        public Watcher(string path, string entityName, string propertyName)
        {
            this.path = path;
            this.entityName = entityName;
            this.propertyName = propertyName;

            m_timer = new WatcherTimer(OnChanged, OnRenamed, 60000);
        }