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/Meta


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Remoting/Metadata SoapMethodAttribute.cs, 1.2, 1.3 SoapTypeAttribute.cs, 1.3, 1.4
Date: Thu, 11 Sep 2003 01:48:37 -0400

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

Modified Files:
        SoapMethodAttribute.cs SoapTypeAttribute.cs 
Log Message:


Implement missing functionality in "SoapServices".


Index: SoapMethodAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Metadata/SoapMethodAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** SoapMethodAttribute.cs      6 Aug 2003 02:07:53 -0000       1.2
--- SoapMethodAttribute.cs      11 Sep 2003 05:48:35 -0000      1.3
***************
*** 35,38 ****
--- 35,39 ----
        private String returnXmlElementName;
        private String soapAction;
+       internal bool soapActionWasSet;
  
        // Constructor.
***************
*** 106,109 ****
--- 107,111 ----
                                {
                                        soapAction = value;
+                                       soapActionWasSet = true;
                                }
                        }

Index: SoapTypeAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Metadata/SoapTypeAttribute.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** SoapTypeAttribute.cs        6 Aug 2003 02:07:53 -0000       1.3
--- SoapTypeAttribute.cs        11 Sep 2003 05:48:35 -0000      1.4
***************
*** 40,43 ****
--- 40,45 ----
        private String xmlTypeName;
        private String xmlTypeNamespace;
+       internal bool xmlElementWasSet;
+       internal bool xmlTypeWasSet;
  
        // Constructor.
***************
*** 84,87 ****
--- 86,90 ----
                                {
                                        xmlElementName = value;
+                                       xmlElementWasSet = true;
                                }
                        }
***************
*** 110,113 ****
--- 113,117 ----
                                {
                                        ProtXmlNamespace = value;
+                                       xmlElementWasSet = true;
                                }
                        }
***************
*** 128,131 ****
--- 132,136 ----
                                {
                                        xmlTypeName = value;
+                                       xmlTypeWasSet = true;
                                }
                        }
***************
*** 147,150 ****
--- 152,156 ----
                                {
                                        xmlTypeNamespace = value;
+                                       xmlTypeWasSet = true;
                                }
                        }





reply via email to

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