Merge pull request #896 from echampet/webresource
[mono.git] / mcs / class / System.Messaging / System.Messaging / AccessControlList.cs
index cb72d49c52fac99a12d042932276040c01b8f80a..ebc856744906485f8b93167379e96333e1488465 100644 (file)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-//\r
-// System.Messaging\r
-//\r
-// Authors:\r
-//      Peter Van Isacker (sclytrack@planetinternet.be)\r
-//\r
-// (C) 2003 Peter Van Isacker\r
-//\r
-using System;\r
-using System.Collections;\r
-\r
-namespace System.Messaging \r
-{\r
-       public class AccessControlList: CollectionBase \r
-       {\r
-               [MonoTODO]\r
-               public AccessControlList()\r
-               {\r
-               }\r
-               [MonoTODO]\r
-               public int Add(AccessControlEntry entry) {\r
-                       throw new NotImplementedException();    \r
-               }\r
-               [MonoTODO]\r
-               public bool Contains(AccessControlEntry entry) {\r
-                       throw new NotImplementedException();\r
-               }\r
-               [MonoTODO]\r
-               public void CopyTo(AccessControlEntry[] array, int index) {\r
-                       if (array == null) \r
-                               throw new ArgumentNullException();\r
-                       if (index < 0) \r
-                               throw new ArgumentOutOfRangeException();\r
-                       throw new NotImplementedException();            \r
-               }\r
-               [MonoTODO]\r
-               public int IndexOf(AccessControlEntry entry) {\r
-                       throw new NotImplementedException();\r
-               }\r
-               [MonoTODO]\r
-               public void Insert(int index, AccessControlEntry entry) {\r
-                       throw new NotImplementedException();            \r
-               }\r
-               [MonoTODO]\r
-               public void Remove(AccessControlEntry entry) {\r
-                       throw new NotImplementedException();\r
-               }\r
-       }\r
-}\r
+
+//
+// System.Messaging
+//
+// Authors:
+//      Peter Van Isacker (sclytrack@planetinternet.be)
+//
+// (C) 2003 Peter Van Isacker
+//
+using System;
+using System.Collections;
+
+namespace System.Messaging 
+{
+       public class AccessControlList: CollectionBase 
+       {
+               [MonoTODO]
+               public AccessControlList()
+               {
+               }
+               [MonoTODO]
+               public int Add(AccessControlEntry entry) {
+                       throw new NotImplementedException();    
+               }
+               [MonoTODO]
+               public bool Contains(AccessControlEntry entry) {
+                       throw new NotImplementedException();
+               }
+               [MonoTODO]
+               public void CopyTo(AccessControlEntry[] array, int index) {
+                       if (array == null) 
+                               throw new ArgumentNullException();
+                       if (index < 0) 
+                               throw new ArgumentOutOfRangeException();
+                       throw new NotImplementedException();            
+               }
+               [MonoTODO]
+               public int IndexOf(AccessControlEntry entry) {
+                       throw new NotImplementedException();
+               }
+               [MonoTODO]
+               public void Insert(int index, AccessControlEntry entry) {
+                       throw new NotImplementedException();            
+               }
+               [MonoTODO]
+               public void Remove(AccessControlEntry entry) {
+                       throw new NotImplementedException();
+               }
+       }
+}