FileSystemWatcher.DefaultEventAttribute.cs 448 B

12345678910111213141516
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. #if !MOBILE
  5. namespace System.IO.CoreFX
  6. #else
  7. namespace System.IO
  8. #endif
  9. {
  10. // Add DefaultEventAdttribute for NS2.1 support
  11. [System.ComponentModel.DefaultEventAttribute("Changed")]
  12. public partial class FileSystemWatcher
  13. {
  14. }
  15. }