Add info to the manual page on MONO_DNS
[mono.git] / mcs / class / IKVM.Reflection / StandAloneMethodSig.cs
1 /*
2   Copyright (C) 2010 Jeroen Frijters
3
4   This software is provided 'as-is', without any express or implied
5   warranty.  In no event will the authors be held liable for any damages
6   arising from the use of this software.
7
8   Permission is granted to anyone to use this software for any purpose,
9   including commercial applications, and to alter it and redistribute it
10   freely, subject to the following restrictions:
11
12   1. The origin of this software must not be misrepresented; you must not
13      claim that you wrote the original software. If you use this software
14      in a product, an acknowledgment in the product documentation would be
15      appreciated but is not required.
16   2. Altered source versions must be plainly marked as such, and must not be
17      misrepresented as being the original software.
18   3. This notice may not be removed or altered from any source distribution.
19
20   Jeroen Frijters
21   jeroen@frijters.net
22   
23 */
24 using System;
25 using System.Runtime.InteropServices;
26 using IKVM.Reflection.Reader;
27
28 namespace IKVM.Reflection
29 {
30         public sealed class __StandAloneMethodSig
31         {
32                 private readonly bool unmanaged;
33                 private readonly CallingConvention unmanagedCallingConvention;
34                 private readonly CallingConventions callingConvention;
35                 private readonly Type returnType;
36                 private readonly Type[] parameterTypes;
37                 private readonly Type[] optionalParameterTypes;
38
39                 internal __StandAloneMethodSig(bool unmanaged, CallingConvention unmanagedCallingConvention, CallingConventions callingConvention, Type returnType, Type[] parameterTypes, Type[] optionalParameterTypes)
40                 {
41                         this.unmanaged = unmanaged;
42                         this.unmanagedCallingConvention = unmanagedCallingConvention;
43                         this.callingConvention = callingConvention;
44                         this.returnType = returnType;
45                         this.parameterTypes = parameterTypes;
46                         this.optionalParameterTypes = optionalParameterTypes;
47                 }
48
49                 public bool IsUnmanaged
50                 {
51                         get { return unmanaged; }
52                 }
53
54                 public CallingConventions CallingConvention
55                 {
56                         get { return callingConvention; }
57                 }
58
59                 public CallingConvention UnmanagedCallingConvention
60                 {
61                         get { return unmanagedCallingConvention; }
62                 }
63
64                 public Type ReturnType
65                 {
66                         get { return returnType; }
67                 }
68
69                 public Type[] ParameterTypes
70                 {
71                         get { return Util.Copy(parameterTypes); }
72                 }
73
74                 public Type[] OptionalParameterTypes
75                 {
76                         get { return Util.Copy(optionalParameterTypes); }
77                 }
78         }
79 }