ACLs now work on Windows. Tests all the way up to DirectorySecurityTest and FileSecur...
[mono.git] / mcs / class / corlib / System.Security.AccessControl / DirectorySecurity.cs
index a0a6d34dcfdcf43bc0904b3ac6a8e46a75358b05..b4acd323834eee6a449345ebc4a4de6bac10d576 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-namespace System.Security.AccessControl {
-       public sealed class DirectorySecurity : FileSystemSecurity {
+namespace System.Security.AccessControl
+{
+       public sealed class DirectorySecurity : FileSystemSecurity
+       {
                public DirectorySecurity ()
                        : base (true)
                {
-                       throw new PlatformNotSupportedException ();
                }
 
                public DirectorySecurity (string name, AccessControlSections includeSections)
                        : base (true, name, includeSections)
                {
-                       throw new PlatformNotSupportedException ();
                }
        }
 }