2007-05-08 Igor Zelmanovich <igorz@mainsoft.com>
[mono.git] / mcs / class / System / System.ComponentModel / Win32Exception.cs
old mode 100755 (executable)
new mode 100644 (file)
index 9f9dc54..7a5523c
@@ -5,8 +5,7 @@
 //   Dick Porter (dick@ximian.com)
 //
 // (C) 2002 Ximian, Inc.  http://www.ximian.com
-//
-
+// Copyright (C) 2005 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
@@ -29,6 +28,7 @@
 //
 
 using System.Security;
+using System.Security.Permissions;
 using System.Runtime.InteropServices;
 using System.Runtime.Serialization;
 using System.Collections;
@@ -40,23 +40,43 @@ namespace System.ComponentModel
        public class Win32Exception : ExternalException
        {
                private int native_error_code;
-               
+
+//             [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
                public Win32Exception ()
-                       : base (W32ErrorMessage(Marshal.GetLastWin32Error()),
-                               Marshal.GetLastWin32Error()) {
-                       native_error_code=Marshal.GetLastWin32Error();
+                       : base (W32ErrorMessage (Marshal.GetLastWin32Error ()),
+                               Marshal.GetLastWin32Error ()) 
+               {
+                       native_error_code = Marshal.GetLastWin32Error ();
                }
 
-               public Win32Exception(int error)
-                       : base (W32ErrorMessage(error), error) {
-                       native_error_code=error;
+//             [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (int error)
+                       : base (W32ErrorMessage (error), error) 
+               {
+                       native_error_code = error;
                }
 
-               public Win32Exception(int error, string message) 
-                       : base (message, error) {
-                       native_error_code=error;
+//             [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (int error, string message) 
+                       : base (message, error)
+               {
+                       native_error_code = error;
+               }
+#if NET_2_0
+               [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (string message)
+                       : base (message)
+               {
+                       native_error_code = Marshal.GetLastWin32Error ();
                }
 
+               [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+                       native_error_code = Marshal.GetLastWin32Error ();
+               }
+#endif
                protected Win32Exception(SerializationInfo info,
                                         StreamingContext context)
                        : base (info, context) {
@@ -70,9 +90,10 @@ namespace System.ComponentModel
                        }
                }
 
+               [SecurityPermission (SecurityAction.Demand, SerializationFormatter = true)]
                public override void GetObjectData(SerializationInfo info, StreamingContext context)
                {
-                       if (info==null)
+                       if (info == null)
                                throw new ArgumentNullException ("info");
 
                        info.AddValue ("NativeErrorCode", native_error_code);
@@ -90,6 +111,12 @@ namespace System.ComponentModel
                        case 3:
                                message = Locale.GetText ("Cannot find the specified file");
                                break;
+                       case 50:
+                               message = Locale.GetText ("Operation not supported");
+                               break;
+                       case 267:
+                               message = Locale.GetText ("Is a directory");
+                               break;
                        case 10004:
                                message = Locale.GetText ("interrupted");
                                break;
@@ -127,7 +154,7 @@ namespace System.ComponentModel
                                message = Locale.GetText ("Operation not supported");
                                break;
                        case 10047:
-                               message = Locale.GetText ("AF not supported");
+                               message = Locale.GetText ("An address incompatible with the requested protocol was used");
                                break;
                        case 10048:
                                message = Locale.GetText ("Address already in use");
@@ -141,6 +168,12 @@ namespace System.ComponentModel
                        case 10051:
                                message = Locale.GetText ("Network is unreachable");
                                break;
+                       case 10052:
+                               message = Locale.GetText ("Connection broken, keep-alive detected a problem");
+                               break;
+                       case 10053:
+                               message = Locale.GetText ("An established connection was aborted in your host machine.");
+                               break;
                        case 10054:
                                message = Locale.GetText ("Connection reset by peer");
                                break;