File: System\IO\ErrorEventHandler.cs | Web Access |
Project: src\src\libraries\System.IO.FileSystem.Watcher\src\System.IO.FileSystem.Watcher.csproj (System.IO.FileSystem.Watcher) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.IO { /// <devdoc> /// Represents the method that will /// handle the <see cref='System.IO.FileSystemWatcher.Error'/> /// event of a <see cref='System.IO.FileSystemWatcher'/>. /// </devdoc> public delegate void ErrorEventHandler(object sender, ErrorEventArgs e); } |