FcnMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies behavior for file change notification (FCN) in the application.
public enum class FcnMode
public enum FcnMode
type FcnMode =
Public Enum FcnMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
NotSet | 0 | File change notification is not set, so the application creates an object that monitors each subdirectory. This is the default behavior. |
Default | 1 | For each subdirectory, the application creates an object that monitors the subdirectory. This is the default behavior. |
Disabled | 2 | File change notification is disabled. |
Single | 3 | The application creates one object to monitor the main directory and uses this object to monitor each subdirectory. |