File: services\io\system\io\ChangedFilters.cs
Project: ndp\fx\src\System.csproj (System)
//------------------------------------------------------------------------------
// <copyright file="ChangedFilters.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.IO {
 
    using System.Diagnostics;
    
 
    using System;
 
    /// <devdoc>
    ///    <para>Specifies the changes to watch
    ///       for in a file or folder.</para>
    /// </devdoc>
    [Flags]
    public enum NotifyFilters {
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        FileName     = 0x00000001,
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        DirectoryName= 0x00000002,
        /// <devdoc>
        ///    <para>
        ///       
        ///       The attributes of the file or folder.
        ///       
        ///    </para>
        /// </devdoc>
        Attributes   = 0x00000004,
        /// <devdoc>
        ///    <para>
        ///       
        ///       The size of the file or folder.
        ///       
        ///    </para>
        /// </devdoc>
        Size         = 0x00000008,
        /// <devdoc>
        ///    <para>
        ///       The
        ///       date that the file or folder last had anything written to it.
        ///       
        ///    </para>
        /// </devdoc>
        LastWrite    = 0x00000010,
        /// <devdoc>
        ///    <para>
        ///       
        ///       The date that the file or folder was last opened.
        ///       
        ///    </para>
        /// </devdoc>
        LastAccess   = 0x00000020,
        /// <devdoc>
        ///    <para>[To be supplied.]</para>
        /// </devdoc>
        CreationTime = 0x00000040,
        /// <devdoc>
        ///    <para>
        ///       
        ///       The security settings of the file or folder.
        ///       
        ///    </para>
        /// </devdoc>
        Security     = 0x00000100,
    }
 
 
 
}