C# Класс VersionOne.ServiceHost.Core.FileSystemMonitor

Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
FileSystemMonitor ( IProfile profile, string watchFolder, string filterPattern ) : System.IO

Защищенные методы

Метод Описание
GetState ( string file ) : bool?

Get the processed state of the given file from the profile.

InvokeProcessor ( string path ) : void
ProcessPath ( string path ) : void

Perform the basic processing pattern.

SaveState ( string file, bool done ) : void

Save the processing state for the given file to the profile.

Описание методов

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

public FileSystemMonitor ( IProfile profile, string watchFolder, string filterPattern ) : System.IO
profile IProfile
watchFolder string
filterPattern string
Результат System.IO

GetState() защищенный Метод

Get the processed state of the given file from the profile.
protected GetState ( string file ) : bool?
file string File to look up.
Результат bool?

InvokeProcessor() защищенный абстрактный Метод

protected abstract InvokeProcessor ( string path ) : void
path string
Результат void

ProcessPath() защищенный Метод

Perform the basic processing pattern.
protected ProcessPath ( string path ) : void
path string A file or directory name, depending on the subclass implementation.
Результат void

SaveState() защищенный Метод

Save the processing state for the given file to the profile.
protected SaveState ( string file, bool done ) : void
file string File in question.
done bool True if processed.
Результат void