2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Metadata / SoapMethodAttribute.cs
1 //
2 // System.Runtime.Remoting.Metadata.SoapMethodAttribute.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //         Lluis Sanchez Gual (lluis@ximian.com)
6 //
7 // 2002 (C) Copyright, Ximian, Inc.
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.Reflection;
35 using System.Runtime.Remoting;
36 using System.Runtime.Remoting.Metadata;
37
38 namespace System.Runtime.Remoting.Metadata {
39
40         [AttributeUsage (AttributeTargets.Method)]
41         public sealed class SoapMethodAttribute : SoapAttribute
42         {
43                 string _responseElement;
44                 string _responseNamespace;
45                 string _returnElement;
46                 string _soapAction;
47                 bool _useAttribute;
48                 string _namespace;
49                 
50                 public SoapMethodAttribute ()
51                 {
52                 }
53
54                 public string ResponseXmlElementName {
55                         get {
56                                 return _responseElement;
57                         }
58
59                         set {
60                                 _responseElement = value;
61                         }
62                 }
63                 
64                 public string ResponseXmlNamespace {
65                         get {
66                                 return _responseNamespace;
67                         }
68
69                         set {
70                                 _responseNamespace = value;
71                         }
72                 }
73
74                 public string ReturnXmlElementName {
75                         get {
76                                 return _returnElement;
77                         }
78
79                         set {
80                                 _returnElement = value;
81                         }
82                 }
83
84                 public string SoapAction {
85                         get {
86                                 return _soapAction;
87                         }
88
89                         set {
90                                 _soapAction = value;
91                         }
92                 }
93
94                 public override bool UseAttribute {
95                         get {
96                                 return _useAttribute;
97                         }
98
99                         set {
100                                 _useAttribute = value;
101                         }
102                 }
103
104                 public override string XmlNamespace {
105                         get {
106                                 return _namespace;
107                         }
108
109                         set {
110                                 _namespace = value;
111                         }
112                 }
113                 
114                 internal override void SetReflectionObject (object reflectionObject)
115                 {
116                         MethodBase mb = (MethodBase) reflectionObject;
117                         
118                         if (_responseElement == null)
119                                 _responseElement = mb.Name + "Response";
120                                 
121                         if (_responseNamespace == null)
122                                 _responseNamespace = SoapServices.GetXmlNamespaceForMethodResponse (mb);
123                                 
124                         if (_returnElement == null)
125                                 _returnElement = "return";
126                                 
127                         if (_soapAction == null) {
128                                 _soapAction = SoapServices.GetXmlNamespaceForMethodCall (mb) + "#" + mb.Name;
129                         }
130                         
131                         if (_namespace == null)
132                                 _namespace = SoapServices.GetXmlNamespaceForMethodCall (mb);
133                 }
134         }
135 }