* WebService.cs: Added SoapVersion property.
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Messaging / MonoMethodMessage.cs
index 1e7fa10a216a6a784771f43716ca43c98d1d1227..4c99d043b2f782323b812280fddc2c2b79418355 100644 (file)
@@ -8,6 +8,29 @@
 // (C) Ximian, Inc.  http://www.ximian.com
 //
 
+//
+// Copyright (C) 2004 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
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using System;
 using System.Collections;
 using System.Reflection;
@@ -16,7 +39,7 @@ using System.Runtime.CompilerServices;
 namespace System.Runtime.Remoting.Messaging {
        
        [Serializable]
-       public class MonoMethodMessage : IMethodCallMessage, IMethodReturnMessage, IInternalMessage {
+       internal class MonoMethodMessage : IMethodCallMessage, IMethodReturnMessage, IInternalMessage {
 
                MonoMethod method;
 
@@ -34,6 +57,8 @@ namespace System.Runtime.Remoting.Messaging {
 
                AsyncResult asyncResult;
 
+               CallType call_type;
+
                string uri;
 
                MethodCallDictionary properties;
@@ -76,9 +101,11 @@ namespace System.Runtime.Remoting.Messaging {
 
                public int ArgCount {
                        get {
+                               if (CallType == CallType.EndInvoke)
+                                       return -1;
+                                       
                                if (null == args)
                                        return 0;
-//         Lluis Sanchez Gual (lluis@ximian.com)
 
                                return args.Length;
                        }
@@ -170,6 +197,9 @@ namespace System.Runtime.Remoting.Messaging {
 
                public int InArgCount {
                        get {
+                               if (CallType == CallType.EndInvoke)
+                                       return -1;
+
                                if (null == args)
                                        return 0;
 
@@ -312,5 +342,26 @@ namespace System.Runtime.Remoting.Messaging {
                {
                        get { return asyncResult; }
                }
+
+               internal CallType CallType
+               {
+                       get
+                       {
+                               // FIXME: ideally, the OneWay type would be set by the runtime
+                               
+                               if (call_type == CallType.Sync && RemotingServices.IsOneWay (method))
+                                       call_type = CallType.OneWay;
+                               return call_type;
+                       }
+               }
+       }
+
+       internal enum CallType: int
+       {
+               Sync = 0,
+               BeginInvoke = 1,
+               EndInvoke = 2,
+               OneWay = 3
        }
 }
+