| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // System.IO.FileSystemEventArgs.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- namespace System.IO {
- public class FileSystemEventArgs : EventArgs {
- #region Fields
- WatcherChangeTypes changeType;
- string directory;
- string name;
- #endregion // Fields
- #region Constructors
- public FileSystemEventArgs (WatcherChangeTypes changeType, string directory, string name)
- {
- this.changeType = changeType;
- this.directory = directory;
- this.name = name;
- }
-
- #endregion // Constructors
- #region Properties
- public WatcherChangeTypes ChangeType {
- get { return changeType; }
- }
- public string FullPath {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public string Name {
- get { return name; }
- }
- #endregion // Properties
- }
- }
|