merged Sys.Web.Services 2.0 support in my branch:
[mono.git] / mcs / class / corlib / System / TypedReference.cs
1 //
2 // System.TypedReference.cs
3 //
4 // Authors:
5 //   Dick Porter (dick@ximian.com)
6 //   Paolo Molaro (lupus@ximian.com)
7 //
8 // (C) Ximian, Inc.  http://www.ximian.com
9 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Reflection;
32 using System.Runtime.CompilerServices;
33 using System.Security.Permissions;
34
35 namespace System 
36 {
37         [CLSCompliant (false)]
38         public struct TypedReference 
39         {
40                 RuntimeTypeHandle type;
41                 IntPtr value;
42                 IntPtr klass;
43
44                 public override bool Equals (object o)
45                 {
46                         throw new NotSupportedException (Locale.GetText ("This operation is not supported for this type."));
47                 }
48
49                 public override int GetHashCode ()
50                 {
51                         if (type.Value == IntPtr.Zero)
52                                 return 0;
53                         return Type.GetTypeFromHandle (type).GetHashCode ();
54                 }
55
56                 public static Type GetTargetType (TypedReference value)
57                 {
58                         return Type.GetTypeFromHandle (value.type);
59                 }
60
61                 [MonoTODO]
62                 [CLSCompliant (false)]
63                 [ReflectionPermission (SecurityAction.LinkDemand, MemberAccess = true)]
64                 public static TypedReference MakeTypedReference (object target, FieldInfo[] flds) 
65                 {
66                         if (target == null) {
67                                 throw new ArgumentNullException ("target");
68                         }
69                         if (flds == null) {
70                                 throw new ArgumentNullException ("flds");
71                         }
72                         if (flds.Length == 0) {
73                                 throw new ArgumentException (Locale.GetText ("flds has no elements"));
74                         }
75                         throw new NotImplementedException ();
76                 }
77
78                 /* how can we set something in value if it's passed by value? */
79                 [MonoTODO]
80                 [CLSCompliant (false)]
81                 public static void SetTypedReference (TypedReference target, object value) 
82                 {
83                         if (value == null) {
84                                 throw new ArgumentNullException ("value");
85                         }
86                         throw new NotImplementedException ();
87                 }
88
89                 public static RuntimeTypeHandle TargetTypeToken (TypedReference value)
90                 {
91                         return value.type;
92                 }
93
94                 [MethodImpl (MethodImplOptions.InternalCall)]
95                 public extern static object ToObject (TypedReference value);
96         }
97 }