**** Merged from MCS ****
[mono-project.git] / mcs / class / corlib / System.Runtime.Remoting.Metadata / SoapMethodAttribute.cs
blob184febfdbe058456bc041059e4e72d4c74e1af7c
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 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
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.
33 using System;
34 using System.Reflection;
35 using System.Runtime.Remoting;
36 using System.Runtime.Remoting.Metadata;
38 namespace System.Runtime.Remoting.Metadata {
40 [AttributeUsage (AttributeTargets.Method)]
41 public sealed class SoapMethodAttribute : SoapAttribute
43 string _responseElement;
44 string _responseNamespace;
45 string _returnElement;
46 string _soapAction;
47 bool _useAttribute;
48 string _namespace;
50 public SoapMethodAttribute ()
54 public string ResponseXmlElementName {
55 get {
56 return _responseElement;
59 set {
60 _responseElement = value;
64 public string ResponseXmlNamespace {
65 get {
66 return _responseNamespace;
69 set {
70 _responseNamespace = value;
74 public string ReturnXmlElementName {
75 get {
76 return _returnElement;
79 set {
80 _returnElement = value;
84 public string SoapAction {
85 get {
86 return _soapAction;
89 set {
90 _soapAction = value;
94 public override bool UseAttribute {
95 get {
96 return _useAttribute;
99 set {
100 _useAttribute = value;
104 public override string XmlNamespace {
105 get {
106 return _namespace;
109 set {
110 _namespace = value;
114 internal override void SetReflectionObject (object reflectionObject)
116 MethodBase mb = (MethodBase) reflectionObject;
118 if (_responseElement == null)
119 _responseElement = mb.Name + "Response";
121 if (_responseNamespace == null)
122 _responseNamespace = SoapServices.GetXmlNamespaceForMethodResponse (mb);
124 if (_returnElement == null)
125 _returnElement = "return";
127 if (_soapAction == null) {
128 _soapAction = SoapServices.GetXmlNamespaceForMethodCall (mb) + "#" + mb.Name;
131 if (_namespace == null)
132 _namespace = SoapServices.GetXmlNamespaceForMethodCall (mb);