File: services\io\system\io\FileSystemEventHandler.cs
Project: ndp\fx\src\System.csproj (System)
//------------------------------------------------------------------------------
// <copyright file="FileSystemEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
 
namespace System.IO {
 
    using System.Diagnostics;
    using System;
 
    /// <devdoc>
    /// <para>Represents the method that will handle the <see cref='System.IO.FileSystemWatcher.Changed'/>, <see cref='System.IO.FileSystemWatcher.Created'/>, or <see cref='System.IO.FileSystemWatcher.Deleted'/> event of a <see cref='System.IO.FileSystemWatcher'/>
    /// class.</para>
    /// </devdoc>
    public delegate void FileSystemEventHandler(object sender, FileSystemEventArgs e);
}