bump referencesource for System.Data (remove wrong MDAC ver. check for Odbc)
[mono.git] / mcs / tools / cil-strip / Mono.Cecil / MethodReturnType.cs
1 //
2 // MethodReturnType.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@gmail.com)
6 //
7 // (C) 2005 Jb Evain
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30
31 using Mono.Cecil.Metadata;
32
33 namespace Mono.Cecil {
34
35         internal sealed class MethodReturnType : ICustomAttributeProvider, IHasMarshalSpec, IHasConstant {
36
37                 MethodReference m_method;
38                 ParameterDefinition m_param;
39
40                 TypeReference m_returnType;
41
42                 public MethodReference Method {
43                         get { return m_method; }
44                         set { m_method = value; }
45                 }
46
47                 public TypeReference ReturnType {
48                         get { return m_returnType; }
49                         set { m_returnType = value; }
50                 }
51
52                 internal ParameterDefinition Parameter {
53                         get {
54                                 if (m_param == null) {
55                                         m_param = new ParameterDefinition (m_returnType);
56                                         m_param.Method = m_method;
57                                 }
58
59                                 return m_param;
60                         }
61                         set { m_param = value; }
62                 }
63
64                 public MetadataToken MetadataToken {
65                         get { return Parameter.MetadataToken; }
66                         set { Parameter.MetadataToken = value; }
67                 }
68
69                 public bool HasCustomAttributes {
70                         get { return m_param != null && m_param.HasCustomAttributes; }
71                 }
72
73                 public CustomAttributeCollection CustomAttributes {
74                         get { return Parameter.CustomAttributes; }
75                 }
76
77                 public bool HasConstant {
78                         get { return m_param != null && m_param.HasConstant; }
79                 }
80
81                 public object Constant {
82                         get { return Parameter.Constant; }
83                         set { Parameter.Constant = value; }
84                 }
85
86                 public MarshalSpec MarshalSpec {
87                         get { return Parameter.MarshalSpec; }
88                         set { Parameter.MarshalSpec = value; }
89                 }
90
91                 public MethodReturnType (TypeReference retType)
92                 {
93                         m_returnType = retType;
94                 }
95
96                 public override string ToString ()
97                 {
98                         return String.Format ("[return: {0}]", m_returnType);
99                 }
100         }
101 }