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/Remoting/Mess


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Remoting/Messaging Header.cs, 1.2, 1.3 HeaderHandler.cs, 1.1, 1.2 IMessage.cs, 1.1, 1.2 IMethodCallMessage.cs, 1.1, 1.2 IMethodMessage.cs, 1.1, 1.2 IMethodReturnMessage.cs, 1.1, 1.2 IRemotingFormatter.cs, 1.1, 1.2 ISerializationRootObject.cs, 1.1, 1.2 LogicalCallContext.cs, 1.2, 1.3
Date: Mon, 04 Aug 2003 21:23:35 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging
In directory 
subversions:/tmp/cvs-serv11383/runtime/System/Runtime/Remoting/Messaging

Modified Files:
        Header.cs HeaderHandler.cs IMessage.cs IMethodCallMessage.cs 
        IMethodMessage.cs IMethodReturnMessage.cs 
        IRemotingFormatter.cs ISerializationRootObject.cs 
        LogicalCallContext.cs 
Log Message:


Shift some classes from CONFIG_REMOTING to CONFIG_SERIALIZATION
so that we can build profiles with object serialization support,
but not remoting support.


Index: Header.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/Header.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Header.cs   23 Apr 2003 05:39:50 -0000      1.2
--- Header.cs   5 Aug 2003 01:23:33 -0000       1.3
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  [Serializable]
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  [Serializable]
***************
*** 57,61 ****
  }; // class Header
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 57,61 ----
  }; // class Header
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: HeaderHandler.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/HeaderHandler.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** HeaderHandler.cs    17 Apr 2003 10:36:09 -0000      1.1
--- HeaderHandler.cs    5 Aug 2003 01:23:33 -0000       1.2
***************
*** 23,31 ****
  {
  
! #if CONFIG_REMOTING
  
  public delegate Object HeaderHandler(Header[] headers);
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 23,31 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  public delegate Object HeaderHandler(Header[] headers);
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: IMessage.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/IMessage.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IMessage.cs 17 Apr 2003 10:36:09 -0000      1.1
--- IMessage.cs 5 Aug 2003 01:23:33 -0000       1.2
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  using System.Collections;
***************
*** 34,38 ****
  }; // interface IMessage
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 34,38 ----
  }; // interface IMessage
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: IMethodCallMessage.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/IMethodCallMessage.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IMethodCallMessage.cs       17 Apr 2003 10:36:09 -0000      1.1
--- IMethodCallMessage.cs       5 Aug 2003 01:23:33 -0000       1.2
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  public interface IMethodCallMessage : IMethodMessage, IMessage
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  public interface IMethodCallMessage : IMethodMessage, IMessage
***************
*** 41,45 ****
  }; // interface IMethodCallMessage
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 41,45 ----
  }; // interface IMethodCallMessage
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: IMethodMessage.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/IMethodMessage.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IMethodMessage.cs   17 Apr 2003 10:36:09 -0000      1.1
--- IMethodMessage.cs   5 Aug 2003 01:23:33 -0000       1.2
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  using System.Reflection;
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  using System.Reflection;
***************
*** 64,68 ****
  }; // interface IMethodMessage
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 64,68 ----
  }; // interface IMethodMessage
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: IMethodReturnMessage.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/IMethodReturnMessage.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IMethodReturnMessage.cs     17 Apr 2003 10:36:09 -0000      1.1
--- IMethodReturnMessage.cs     5 Aug 2003 01:23:33 -0000       1.2
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  public interface IMethodReturnMessage : IMethodMessage, IMessage
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  public interface IMethodReturnMessage : IMethodMessage, IMessage
***************
*** 47,51 ****
  }; // interface IMethodReturnMessage
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 47,51 ----
  }; // interface IMethodReturnMessage
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: IRemotingFormatter.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/IRemotingFormatter.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IRemotingFormatter.cs       17 Apr 2003 10:36:09 -0000      1.1
--- IRemotingFormatter.cs       5 Aug 2003 01:23:33 -0000       1.2
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  using System.IO;
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  using System.IO;
***************
*** 38,42 ****
  }; // interface IRemotingFormatter
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 38,42 ----
  }; // interface IRemotingFormatter
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: ISerializationRootObject.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/ISerializationRootObject.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ISerializationRootObject.cs 25 Apr 2003 05:19:55 -0000      1.1
--- ISerializationRootObject.cs 5 Aug 2003 01:23:33 -0000       1.2
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  using System.Runtime.Serialization;
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  using System.Runtime.Serialization;
***************
*** 33,37 ****
  }; // interface ISerializationRootObject
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 33,37 ----
  }; // interface ISerializationRootObject
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging

Index: LogicalCallContext.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Messaging/LogicalCallContext.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** LogicalCallContext.cs       23 Apr 2003 05:39:50 -0000      1.2
--- LogicalCallContext.cs       5 Aug 2003 01:23:33 -0000       1.3
***************
*** 23,27 ****
  {
  
! #if CONFIG_REMOTING
  
  using System.Collections;
--- 23,27 ----
  {
  
! #if CONFIG_SERIALIZATION
  
  using System.Collections;
***************
*** 114,118 ****
  }; // class LogicalCallContext
  
! #endif // CONFIG_REMOTING
  
  }; // namespace System.Runtime.Remoting.Messaging
--- 114,118 ----
  }; // class LogicalCallContext
  
! #endif // CONFIG_SERIALIZATION
  
  }; // namespace System.Runtime.Remoting.Messaging





reply via email to

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