CmisSync.Lib.WatcherEvent.WatcherEvent C# (CSharp) Метод

WatcherEvent() публичный Метод

Constructor.
public WatcherEvent ( FileSystemEventArgs args ) : System
args System.IO.FileSystemEventArgs
Результат System
        public WatcherEvent(FileSystemEventArgs args)
        {
            this.args = args;

            // Start the grace time count.
            // A few seconds might have passed already, but we don't care since grace time is around tenfold that.
            grace = new Grace();
        }