dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/InteropService


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/InteropServices COMException.cs,1.3,1.4 ExternalException.cs,1.4,1.5 InvalidComObjectException.cs,1.3,1.4 InvalidOleVariantTypeException.cs,1.3,1.4 MarshalDirectiveException.cs,1.3,1.4 SEHException.cs,1.4,1.5 SafeArrayRankMismatchException.cs,1.3,1.4 SafeArrayTypeMismatchException.cs,1.3,1.4
Date: Mon, 26 May 2003 00:41:24 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices
In directory 
subversions:/tmp/cvs-serv26070/runtime/System/Runtime/InteropServices

Modified Files:
        COMException.cs ExternalException.cs 
        InvalidComObjectException.cs InvalidOleVariantTypeException.cs 
        MarshalDirectiveException.cs SEHException.cs 
        SafeArrayRankMismatchException.cs 
        SafeArrayTypeMismatchException.cs 
Log Message:


Add the CONFIG_SERIALIZATION option to the profiles.


Index: COMException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/COMException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** COMException.cs     5 Apr 2003 06:58:12 -0000       1.3
--- COMException.cs     26 May 2003 04:41:21 -0000      1.4
***************
*** 42,47 ****
--- 42,49 ----
        public COMException(String msg, int errorCode)
                        : base(msg, errorCode) {}
+ #if CONFIG_SERIALIZATION
        protected COMException(SerializationInfo info, StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        // Convert this object into a string.

Index: ExternalException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/ExternalException.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** ExternalException.cs        5 Apr 2003 06:58:12 -0000       1.4
--- ExternalException.cs        26 May 2003 04:41:21 -0000      1.5
***************
*** 44,50 ****
--- 44,52 ----
                                this.errorCode = errorCode;
                        }
+ #if CONFIG_SERIALIZATION
        protected ExternalException(SerializationInfo info,
                                                                
StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        public virtual int ErrorCode

Index: InvalidComObjectException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/InvalidComObjectException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** InvalidComObjectException.cs        5 Apr 2003 06:58:12 -0000       1.3
--- InvalidComObjectException.cs        26 May 2003 04:41:21 -0000      1.4
***************
*** 38,44 ****
--- 38,46 ----
        public InvalidComObjectException(String msg, Exception inner)
                        : base(msg, inner) {}
+ #if CONFIG_SERIALIZATION
        protected InvalidComObjectException(SerializationInfo info,
                                                                                
StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        // Get the default message to use for this exception type.

Index: InvalidOleVariantTypeException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/InvalidOleVariantTypeException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** InvalidOleVariantTypeException.cs   5 Apr 2003 06:58:12 -0000       1.3
--- InvalidOleVariantTypeException.cs   26 May 2003 04:41:21 -0000      1.4
***************
*** 38,44 ****
--- 38,46 ----
        public InvalidOleVariantTypeException(String msg, Exception inner)
                        : base(msg, inner) {}
+ #if CONFIG_SERIALIZATION
        protected InvalidOleVariantTypeException(SerializationInfo info,
                                                                                
     StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        // Get the default message to use for this exception type.

Index: MarshalDirectiveException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/MarshalDirectiveException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** MarshalDirectiveException.cs        5 Apr 2003 06:58:12 -0000       1.3
--- MarshalDirectiveException.cs        26 May 2003 04:41:21 -0000      1.4
***************
*** 38,44 ****
--- 38,46 ----
        public MarshalDirectiveException(String msg, Exception inner)
                        : base(msg, inner) {}
+ #if CONFIG_SERIALIZATION
        protected MarshalDirectiveException(SerializationInfo info,
                                                                                
StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        // Get the default message to use for this exception type.

Index: SEHException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/SEHException.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** SEHException.cs     23 Apr 2003 05:39:49 -0000      1.4
--- SEHException.cs     26 May 2003 04:41:21 -0000      1.5
***************
*** 38,43 ****
--- 38,45 ----
        public SEHException(String msg, Exception inner)
                        : base(msg, inner) {}
+ #if CONFIG_SERIALIZATION
        protected SEHException(SerializationInfo info, StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        // Get the default message to use for this exception type.

Index: SafeArrayRankMismatchException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/SafeArrayRankMismatchException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** SafeArrayRankMismatchException.cs   5 Apr 2003 06:58:12 -0000       1.3
--- SafeArrayRankMismatchException.cs   26 May 2003 04:41:21 -0000      1.4
***************
*** 38,44 ****
--- 38,46 ----
        public SafeArrayRankMismatchException(String msg, Exception inner)
                        : base(msg, inner) {}
+ #if CONFIG_SERIALIZATION
        protected SafeArrayRankMismatchException(SerializationInfo info,
                                                                                
     StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        // Get the default message to use for this exception type.

Index: SafeArrayTypeMismatchException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/SafeArrayTypeMismatchException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** SafeArrayTypeMismatchException.cs   5 Apr 2003 06:58:12 -0000       1.3
--- SafeArrayTypeMismatchException.cs   26 May 2003 04:41:21 -0000      1.4
***************
*** 38,44 ****
--- 38,46 ----
        public SafeArrayTypeMismatchException(String msg, Exception inner)
                        : base(msg, inner) {}
+ #if CONFIG_SERIALIZATION
        protected SafeArrayTypeMismatchException(SerializationInfo info,
                                                                                
     StreamingContext context)
                        : base(info, context) {}
+ #endif
  
        // Get the default message to use for this exception type.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]