| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * Namespace: System.Web.Util
- * Class: FileChangedEventArgs
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: ??%
- *
- * (C) Gaurav Vaish (2001)
- */
- namespace System.Web.Util
- {
- internal class FileChangedEventArgs : EventArgs
- {
- private string filename;
- private FileAction action;
- public void FileChangedEvent(FileAction action, string file)
- {
- this.action = action;
- this.filename = file;
- }
- public string FileName
- {
- get
- {
- return filename;
- }
- }
- public FileAction Action
- {
- get
- {
- return action;
- }
- }
- }
- }
|