2006-01-24 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.AccessControl / AccessControlActions.cs
index 7c9637594e9c59f067d12dbc341e916fda509c8a..823cc38441c7f211c0220c2bd1a949713450654d 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2006 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -32,9 +32,9 @@ namespace System.Security.AccessControl {
 
        [Flags]
        public enum AccessControlActions {
-               None,
-               View,
-               Change
+               None = 0,
+               View = 1,
+               Change = 2
        }
 }