| 1234567891011121314151617181920212223242526 |
- /**
- * Namespace: System.Web.Util
- * Class: FileAction
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: ??%
- *
- * (C) Gaurav Vaish (2001)
- */
- namespace System.Web.Util
- {
- public enum FileAction
- {
- Overwhleming,
- Added,
- Removed,
- Modifiled,
- RenamedOldName,
- RenamedNewName,
- Error = 0x7FFFFFFF
- }
- }
|