**** Merged from MCS ****
[mono-project.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / TypedArray.cs
blobd50634c6fbb07f7246badbb789cd8132f9aa1c8f
1 //
2 // TypedArray.cs:
3 //
4 // Author:
5 // Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
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.
31 namespace Microsoft.JScript.Tmp
33 using System;
34 using System.Reflection;
35 using System.Globalization;
37 public sealed class TypedArray : IReflect
39 public TypedArray (IReflect elementType, int rank)
41 throw new NotImplementedException ();
45 public override bool Equals (object obj)
47 throw new NotImplementedException ();
51 public FieldInfo GetField (string name, BindingFlags bindAttr)
53 throw new NotImplementedException ();
57 public FieldInfo [] GetFields (BindingFlags bindAttr)
59 throw new NotImplementedException ();
63 public override int GetHashCode ()
65 throw new NotImplementedException ();
69 public MemberInfo [] GetMember (string name, BindingFlags bindAttr)
71 throw new NotImplementedException ();
75 public MemberInfo [] GetMembers (BindingFlags bindAttr)
77 throw new NotImplementedException ();
81 public MethodInfo GetMethod (string name, BindingFlags bindAttr)
83 throw new NotImplementedException ();
87 public MethodInfo GetMethod (string name, BindingFlags bindAttr, Binder binder,
88 Type [] types, ParameterModifier [] modifiers)
90 throw new NotImplementedException ();
94 public MethodInfo [] GetMethods (BindingFlags bindAttr)
96 throw new NotImplementedException ();
100 public PropertyInfo GetProperty (string name, BindingFlags bindAttr)
102 throw new NotImplementedException ();
106 public PropertyInfo GetProperty (string name, BindingFlags bindAttr, Binder binder,
107 Type returnType, Type [] types,
108 ParameterModifier [] modifiers)
110 throw new NotImplementedException ();
114 public PropertyInfo [] GetProperties (BindingFlags bindAttr)
116 throw new NotImplementedException ();
120 public object InvokeMember (string name, BindingFlags flags, Binder binder,
121 object target, object [] args,
122 ParameterModifier [] modifiers, CultureInfo locale,
123 string [] namedParameters)
125 throw new NotImplementedException ();
129 public override string ToString ()
131 throw new NotImplementedException ();
135 public Type UnderlyingSystemType {
136 get { throw new NotImplementedException (); }