Merge remote branch 'upstream/master'
[mono.git] / mcs / class / Mono.Cecil / Mono.Cecil / MethodReturnType.cs
1 //
2 // MethodReturnType.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@gmail.com)
6 //
7 // Copyright (c) 2008 - 2010 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 Mono.Collections.Generic;
30
31 namespace Mono.Cecil {
32
33         public sealed class MethodReturnType : IConstantProvider, ICustomAttributeProvider, IMarshalInfoProvider {
34
35                 internal IMethodSignature method;
36                 internal ParameterDefinition parameter;
37                 TypeReference return_type;
38
39                 public IMethodSignature Method {
40                         get { return method; }
41                 }
42
43                 public TypeReference ReturnType {
44                         get { return return_type; }
45                         set { return_type = value; }
46                 }
47
48                 internal ParameterDefinition Parameter {
49                         get { return parameter ?? (parameter = new ParameterDefinition (return_type)); }
50                         set { parameter = value; }
51                 }
52
53                 public MetadataToken MetadataToken {
54                         get { return Parameter.MetadataToken; }
55                         set { Parameter.MetadataToken = value; }
56                 }
57
58                 public bool HasCustomAttributes {
59                         get { return parameter != null && parameter.HasCustomAttributes; }
60                 }
61
62                 public Collection<CustomAttribute> CustomAttributes {
63                         get { return Parameter.CustomAttributes; }
64                 }
65
66                 public bool HasDefault {
67                         get { return parameter != null && parameter.HasDefault; }
68                         set { Parameter.HasDefault = value; }
69                 }
70
71                 public bool HasConstant {
72                         get { return parameter != null && parameter.HasConstant; }
73                         set { Parameter.HasConstant = value; }
74                 }
75
76                 public object Constant {
77                         get { return Parameter.Constant; }
78                         set { Parameter.Constant = value; }
79                 }
80
81                 public bool HasFieldMarshal {
82                         get { return parameter != null && parameter.HasFieldMarshal; }
83                         set { Parameter.HasFieldMarshal = value; }
84                 }
85
86                 public bool HasMarshalInfo {
87                         get { return parameter != null && parameter.HasMarshalInfo; }
88                 }
89
90                 public MarshalInfo MarshalInfo {
91                         get { return Parameter.MarshalInfo; }
92                         set { Parameter.MarshalInfo = value; }
93                 }
94
95                 public MethodReturnType (IMethodSignature method)
96                 {
97                         this.method = method;
98                 }
99         }
100 }