OpenNETCF Smart Device Framework 2.3
Assembly: OpenNETCF (in OpenNETCF.dll) Version: 2.3.0.0
Changes that might occur to a file or directory.
Namespace:
OpenNETCF.IOAssembly: OpenNETCF (in OpenNETCF.dll) Version: 2.3.0.0
Syntax
| C# |
|---|
[FlagsAttribute] public enum WatcherChangeTypes |
| Visual Basic (Declaration) |
|---|
<FlagsAttribute> _ Public Enumeration WatcherChangeTypes |
| Visual Basic (Usage) |
|---|
Dim instance As WatcherChangeTypes |
| Visual C++ |
|---|
[FlagsAttribute] public enum class WatcherChangeTypes |
| J# |
|---|
/** @attribute FlagsAttribute */ public enum WatcherChangeTypes |
| JScript |
|---|
public enum WatcherChangeTypes |
| JavaScript |
|---|
OpenNETCF.IO.WatcherChangeTypes = function(); OpenNETCF.IO.WatcherChangeTypes.createEnum('OpenNETCF.IO.WatcherChangeTypes', true); |
Members
| Member name | Description | |
|---|---|---|
| All |
The creation, deletion, change, or renaming of a file or folder.
| |
| Changed |
The change of a file or folder. The types of changes include: changes to size, attributes, security settings, last write, and last access time.
| |
| Created |
The creation of a file or folder.
| |
| Deleted |
The deletion of a file or folder.
| |
| Renamed |
The renaming of a file or folder.
|
Remarks
Each WatcherChangeTypes member is associated with an event in FileSystemMonitor.
For more information on the events, see Changed, Created, Deleted and Renamed.