Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorGert Driesen <drieseng@users.sourceforge.net>2004-06-17 22:35:35 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2004-06-17 22:35:35 +0400
commit68419f70e132632f8d63471dbcb39cb7fb5656a3 (patch)
treec9c73d6304a1d68e90d0164f47c09f745dc9a5f4 /mcs
parent1bdec1beee6497b8b2f2184a122a0f529f606d73 (diff)
* MarshalDirectiveException.cs: marked serializable to match MS.NET
* SafeArrayRankMismatchException.cs: marked serializable to match MS.NET * SafeArrayTypeMismatchException.cs: marked serializable to match MS.NET svn path=/trunk/mcs/; revision=29801
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/System.Runtime.InteropServices/ChangeLog8
-rw-r--r--mcs/class/corlib/System.Runtime.InteropServices/MarshalDirectiveException.cs1
-rw-r--r--mcs/class/corlib/System.Runtime.InteropServices/SafeArrayRankMismatchException.cs1
-rw-r--r--mcs/class/corlib/System.Runtime.InteropServices/SafeArrayTypeMismatchException.cs1
4 files changed, 11 insertions, 0 deletions
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/ChangeLog b/mcs/class/corlib/System.Runtime.InteropServices/ChangeLog
index a8c9e00f9e4..73026492944 100644
--- a/mcs/class/corlib/System.Runtime.InteropServices/ChangeLog
+++ b/mcs/class/corlib/System.Runtime.InteropServices/ChangeLog
@@ -1,5 +1,13 @@
2004-06-17 Gert Driesen <drieseng@users.sourceforge.net>
+ * MarshalDirectiveException.cs: marked serializable to match MS.NET
+ * SafeArrayRankMismatchException.cs: marked serializable to match
+ MS.NET
+ * SafeArrayTypeMismatchException.cs: marked serializable to match
+ MS.NET
+
+2004-06-17 Gert Driesen <drieseng@users.sourceforge.net>
+
* InvalidComObjectException.cs: marked serializable to match MS.NET
* InvalidOleVarianTypeException.cs: marked serializable to match
MS.NET
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/MarshalDirectiveException.cs b/mcs/class/corlib/System.Runtime.InteropServices/MarshalDirectiveException.cs
index 37806b89a83..e75092dbebf 100644
--- a/mcs/class/corlib/System.Runtime.InteropServices/MarshalDirectiveException.cs
+++ b/mcs/class/corlib/System.Runtime.InteropServices/MarshalDirectiveException.cs
@@ -33,6 +33,7 @@ using System.Runtime.Serialization;
namespace System.Runtime.InteropServices
{
+ [Serializable]
public class MarshalDirectiveException : SystemException
{
private const int ErrorCode = -2146233035; // = 0x80131535
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayRankMismatchException.cs b/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayRankMismatchException.cs
index 75897a096f8..38bc4be1a47 100644
--- a/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayRankMismatchException.cs
+++ b/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayRankMismatchException.cs
@@ -33,6 +33,7 @@ using System.Runtime.Serialization;
namespace System.Runtime.InteropServices
{
+ [Serializable]
public class SafeArrayRankMismatchException : SystemException
{
private const int ErrorCode = -2146233032; // = 0x80131538
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayTypeMismatchException.cs b/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayTypeMismatchException.cs
index 26aeff8ff3e..55032d4c84c 100644
--- a/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayTypeMismatchException.cs
+++ b/mcs/class/corlib/System.Runtime.InteropServices/SafeArrayTypeMismatchException.cs
@@ -33,6 +33,7 @@ using System.Runtime.Serialization;
namespace System.Runtime.InteropServices
{
+ [Serializable]
public class SafeArrayTypeMismatchException : SystemException
{
private const int ErrorCode = -2146233037; // = 0x80131533