Merge pull request #2097 from steffen-kiess/posix-sockets-3
[mono.git] / mcs / class / corlib / System.Security.AccessControl / GenericAcl.cs
index 658beaea1d6f5f8a06206b67bebf3f53c8f44b4c..8d1628b780b7cf2e3c3e8530bfa0d3cc3651c290 100644 (file)
@@ -63,7 +63,7 @@ namespace System.Security.AccessControl {
                
                public abstract byte Revision { get; }
                
-               public object SyncRoot {
+               public virtual object SyncRoot {
                        get { return this; }
                }
                
@@ -93,6 +93,9 @@ namespace System.Security.AccessControl {
                {
                        return GetEnumerator ();
                }
+               
+               internal abstract string GetSddlForm(ControlFlags sdFlags,
+                                                    bool isDacl);
        }
 }