ChangeLog 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. 2007-03-01 Alp Toker <[email protected]>
  2. * MethodBase.cs: Add missing ComVisible attr.
  3. Add GetMethodFromHandle() 2.0 overload stub (NotImplemented).
  4. 2006-12-30 Marek Safar <[email protected]>
  5. * MonoProperty.cs: Cache frequently used properties.
  6. Thu Dec 14 13:50:48 CET 2006 Paolo Molaro <[email protected]>
  7. * *.cs: added missing Serializable attributes.
  8. Thu Dec 14 12:52:27 CET 2006 Paolo Molaro <[email protected]>
  9. * MonoProperty.cs, ParameterInfo.cs, PropertyInfo.cs:
  10. GetRequiredCustomModifiers()/GetOptionalCustomModifiers()
  11. implementations.
  12. Tue Dec 12 20:35:10 CET 2006 Paolo Molaro <[email protected]>
  13. * MethodBase.cs: added missing ComVisible attr.
  14. * MethodInfo.cs: added a few missing methods that we implement
  15. in derived classes.
  16. Tue Dec 12 19:45:26 CET 2006 Paolo Molaro <[email protected]>
  17. * MonoEvent.cs: correctly obey the nonPublic flag in GetOtherMethods ().
  18. * EventInfo.cs: remove NotImpl exception from GetOtherMethods ().
  19. 2006-10-19 Gert Driesen <[email protected]>
  20. * AssemblyName.cs: Revert change where filename was not converted to
  21. absolute path before passing it to Assembly.InternalGetAssemblyName
  22. as the CodeBase is not set in that case.
  23. 2006-10-17 Kornél Pál <[email protected]>
  24. * FieldInfo.cs: Added GetRawConstantValue (). Note that throwing a
  25. NotSupportedException is the proper implementation.
  26. * ParameterInfo.cs: Use Attributes in Is... properties on profile 2.0
  27. that is expected by subclasses.
  28. 2006-10-14 Gert Driesen <[email protected]>
  29. * AssemblyName.cs: No need to convert filename to absolute path before
  30. passing it to Assembly.InternalGetAssemblyName. This allows our
  31. exception messages to be better match those of MS.
  32. 2006-09-29 Jb Evain <[email protected]>
  33. * MonoFieldInfo.cs: throw a FieldAccessException when setting a literal field.
  34. 2006-09-02 Zoltan Varga <[email protected]>
  35. * ParameterInfo.cs MethodInfo.cs MonoMethod.cs: Applied patch from
  36. Peter Dettman ([email protected]). Implement ReturnParameter
  37. property.
  38. * Binder.cs (ReorderParameters): Really fix this.
  39. * Binder.cs (ReorderParameters): Fix this method. Fixes #79120.
  40. 2006-09-01 Raja R Harinath <[email protected]>
  41. * MonoMethod.cs (ToString): Update to handle change in byref type names.
  42. 2006-08-08 Gert Driesen <[email protected]>
  43. * Assembly.cs: On 2.0 profile, throw FileNotFoundException for
  44. linked resources in GetManifestResourceStream when assembly is
  45. loaded from byte array.
  46. 2006-07-12 Zoltan Varga <[email protected]>
  47. * MonoMethod.cs (ContainsGenericParameters): Implement.
  48. * MonoMethod.cs (Invoke): Prevent invoking of open generic methods.
  49. 2006-07-09 Gert Driesen <[email protected]>
  50. * Assembly.cs: When assembly is loaded from byte array, return null
  51. for linked resources in GetManifestResourceStream. Fixes bug #78468.
  52. 2006-07-09 Zoltan Varga <[email protected]>
  53. * Binder.cs: Add back the support for BindingFlags.ExactBinding. Fixes #78592.
  54. 2006-06-30 Zoltan Varga <[email protected]>
  55. * Binder.cs: Comment out the ExactBinding stuff for the release as it breaks some
  56. gtk# apps.
  57. 2006-06-07 Zoltan Varga <[email protected]>
  58. * Binder.cs: Add support for BindingFlags.ExactBinding. Fixes #78592.
  59. 2006-05-28 Gert Driesen <[email protected]>
  60. * MethodBase.cs: GetMethodBody should not throw ArgumentException for
  61. a method with no IL body. Fixes bug #78522.
  62. 2006-05-10 Zoltan Varga <[email protected]>
  63. * Module.cs (GetMethod): Update after the changes to Type.GetMethod ().
  64. 2006-05-08 Atsushi Enomoto <[email protected]>
  65. * Binder.cs : (Default.SelectMethod)
  66. don't throw AmbiguousMatchException when one of conflicting method
  67. matches weakly. Fixed bug #42547.
  68. 2006-05-08 Atsushi Enomoto <[email protected]>
  69. * Binder.cs : (Default.BindToMethod) reorder parameters based
  70. on namedParameters. Fixed bug #41691.
  71. 2006-05-03 Jb Evain <[email protected]>
  72. * MonoField.cs (GetValue,SetValue): throw a TargetException
  73. when the field is non static and the target is null.
  74. 2006-03-12 Zoltan Varga <[email protected]>
  75. * Binder.cs: Applied patch from Ben to fix #74947.
  76. 2006-03-01 Miguel de Icaza <[email protected]>
  77. * Assembly.cs: Cache the AssemblyName, patch from Tambet. This
  78. reduces the memory usage during remoting.
  79. 2006-02-16 Martin Baulig <[email protected]>
  80. * FieldInfo.cs (FieldInfo.Mono_GetGenericFieldDefinition): Removed.
  81. 2006-02-15 Martin Baulig <[email protected]>
  82. * MethodBase.cs (MethodBase.GetGenericMethodDefinition): Removed.
  83. (MethodBase.Mono_IsInflatedMethod): Removed.
  84. (MethodBase.HasGenericParameters): Removed.
  85. * MethodInfo.cs (MethodInfo.GetGenericMethodDefinition): Moved
  86. here from MethodBase.
  87. * MonoMethod.cs
  88. (MonoMethod.IsGenericMethodDefinition): This is now an icall.
  89. (MonoMethod.IsGenericMethod): Likewise.
  90. 2006-02-14 Martin Baulig <[email protected]>
  91. * MonoMethod.cs
  92. (MonoCMethod.IsGenericMethod): Override this and return false; the
  93. MS runtime doesn't throw an exception here.
  94. 2006-02-08 Martin Baulig <[email protected]>
  95. * MonoGenericClass.cs (MonoGenericClass.IsAssignableFrom):
  96. Override and implement this; fixes #77395.
  97. 2006-02-07 Martin Baulig <[email protected]>
  98. * MonoMethod.cs
  99. (MonoMethod.IsGenericMethod): Only return true for "real" generic
  100. methods and not for arbitrary instantiated methods.
  101. (MonoMethod.IsGenericMethodDefinition): Only return true for
  102. generic method definitions, but not for instantiated generic
  103. methods. This is no longer an interncall. Fixes #77466.
  104. 2006-02-03 Zoltan Varga <[email protected]>
  105. * MethodBase.cs MonoMethod.cs: Implement IsGenericMethod property.
  106. Fixes #77460.
  107. 2005-12-23 Sebastien Pouliot <[email protected]>
  108. * Assembly.cs: Fixed #75950. The icall has been changed to accept a
  109. boolean so it can return a non-escaped code base.
  110. 2005-11-16 Atsushi Enomoto <[email protected]>
  111. * MonoMethod.cs : made MakeGenericMethod() indirect icall to
  112. MakeGenericMethod_impl() and raise an error when it returns null.
  113. 2005-11-15 Zoltan Varga <[email protected]>
  114. * Module.cs: Add MDStreamVersion property.
  115. * Assembly.cs AssemblyNameFlags.cs FieldInfo.cs PropertyInfo.cs
  116. CustomAttributeData.cs PortableExecutableKinds.cs
  117. ObfuscateAssemblyAttribute.cs Module.cs ObfuscationAttribute.cs: Net 2.0 RTM
  118. updates.
  119. 2005-11-11 Marek Safar <[email protected]>
  120. * MethodBase.cs, TypeDelegator.cs: Reflect Type changes.
  121. 2005-10-30 Zoltan Varga <[email protected]>
  122. * FieldInfo.cs: Add an internal UMarshal property which can by
  123. overriden in FieldBuilder.
  124. 2005-10-26 Atsushi Enomoto <[email protected]>
  125. * MonoMethod.cs : (ToString) add suffix " ByRef" for byref parameters.
  126. Fixed bug #76541.
  127. 2005-10-04 Martin Baulig <[email protected]>
  128. * MonoGenericClass.cs (MonoGenericClass.GetParentType): Changed
  129. return type from `MonoGenericClass to `Type'.
  130. 2005-09-26 Carlos Alberto Cortez <[email protected]>
  131. * AssemblyName.cs: Add ParseName internal call, to parse
  132. long format assembly names.
  133. 2005-09-25 Sebastien Pouliot <[email protected]>
  134. * MonoProperty.cs: Invoke throws a SecurityException but GetValue must
  135. throw TargetInvocationException with the SecurityException as an inner
  136. exception. See CAS unit tests for System.Web.dll.
  137. 2005-09-20 Martin Baulig <[email protected]>
  138. * Assembly.cs: Removed some unused debugger icalls.
  139. 2005-09-17 Zoltan Varga <[email protected]>
  140. * Module.cs: Remove obsolete Mvid property.
  141. 2005-09-09 Martin Baulig <[email protected]>
  142. Reflect latest API changes in the August CTP.
  143. * MethodBase.cs (MethodBase.MakeGenericMethod): Removed.
  144. * MethodInfo.cs (MethodInfo.MakeGenericMethod): Added here.
  145. 2005-09-08 Sebastien Pouliot <[email protected]>
  146. * AssemblyName.cs: Apply second half of Chris Micacchi's patch
  147. 2005-09-07 Miguel de Icaza <[email protected]>
  148. * AssemblyName.cs: Apply patch from Chris Micacchi to serialize
  149. the keyToken as "_PublicKeyToken".
  150. 2005-09-05 Martin Baulig <[email protected]>
  151. Reflect latest API changes in the August CTP.
  152. * GenericParameterAttributes.cs: Here.
  153. * MethodBase.cs (MethodBase.BindGenericParameters): Renamed to
  154. MakeGenericMethod().
  155. 2005-09-05 Martin Baulig <[email protected]>
  156. * Assembly.cs (MonoDebugger_GetMethodToken): Don't take an
  157. `Assembly' argument.
  158. 2005-08-08 Gonzalo Paniagua Javier <[email protected]>
  159. * Assembly.cs: made GetManifestResourceInternal internal. Fixes the
  160. build.
  161. 2005-08-05 Gert Driesen <[email protected]>
  162. * Assembly.cs: Added GetType() method in 1.1 to match MS.NET.
  163. * ConstructorInfo.cs: Added GetType() method in 1.1 to match
  164. MS.NET, implemented _ConstructorInfo.
  165. * EventInfo.cs: Added GetType() method in 1.1 to match MS.NET,
  166. implemented _EventInfo.
  167. * FieldInfo.cs: Added GetType() method in 1.1 to match MS.NET,
  168. implemented _FieldInfo.
  169. * MemberInfo.cs: Added GetType() method in 1.1 to match MS.NET,
  170. implemented _MemberInfo.
  171. * MethodBase.cs: Added GetType() method in 1.1 to match MS.NET,
  172. implemented _MethodBase.
  173. * MethodInfo.cs: Added GetType() method in 1.1 to match MS.NET,
  174. implemented _MethodInfo.
  175. * PropertyInfo.cs: Added GetType() method in 1.1 to match MS.NET,
  176. implemented _PropertyInfo.
  177. * TypeAttributes.cs: CustomFormatMask and CustomFormatClass should
  178. only be exposed in 2.0 profile.
  179. 2005-07-29 Carlos Alberto Cortez <[email protected]>
  180. * CustomAttributeTypedArgument: Return the name of the
  181. enum if the type is an enum in ToString ().
  182. 2005-06-21 Sebastien Pouliot <[email protected]>
  183. * Assembly.cs: Create a copy of the evidences and add an instance of
  184. PermissionRequestEvidence to it before resolution. This way the PRE
  185. won't be present when asking for evidences later. Removed debugging
  186. code.
  187. 2005-06-13 Michal Moskal <[email protected]>
  188. * MonoGenericClass.cs: Don't use MethodHandle in GetMethod/GetConstructor,
  189. since it now throws on MethodBuilders. Don't use FieldHandle in
  190. GetField (throws on FieldBuilder) - just use the name.
  191. 2005-06-15 Sebastien Pouliot <[email protected]>
  192. * Assembly.cs, AssemblyName.cs, ConstructorInfo.cs, EventInfo.cs,
  193. FieldInfo.cs, MemberInfo.cs, MethodBase.cs, MethodInfo.cs, Module.cs,
  194. ParameterInfo.cs, PropertyInfo.cs: Added some missing interfaces and
  195. attributes that were added in 1.1 SP1 or 2.0 beta2.
  196. 2005-06-15 Gonzalo Paniagua Javier <[email protected]>
  197. * Binder.cs: null is ok for a value type. Fixes bug #75241.
  198. 2005-06-14 Sebastien Pouliot <[email protected]>
  199. * Assembly.cs: UnprotectedGetName is now virtual to allow for more
  200. initialization in AssemblyBuilder. The [Granted|Refused]PermissionSet
  201. now use the ResolvingPolicyLevel to support the policy
  202. FullTrustAssemblies during resolution.
  203. * AssemblyName.cs: Return null instead of "new byte [0]" if no public
  204. key is available.
  205. 2005-06-09 Kamil Skalski <[email protected]>
  206. * MonoGenericClass.cs: Add overrides of Get{Method,Constructor,Field}
  207. for obtaining instanciated *Info objects from non-instanciated counterparts
  208. 2005-06-09 Zoltan Varga <[email protected]>
  209. * CustomAttributeData.cs EventInfo.cs Assembly.cs: Updates for net 2.0 beta 2.
  210. * *.cs: Updates for net 2.0 beta 2.
  211. 2005-06-07 Zoltan Varga <[email protected]>
  212. * *.cs: Updates for net 2.0 beta 2.
  213. 2005-06-07 Carlos Alberto Cortez <[email protected]>
  214. * CustomAttributeData.cs: Implemented.
  215. * CustomAttributeDataNamedArgument.cs: Implemented.
  216. * CustomAttrbuteDataTypedArgument.cs: Implemented.
  217. 2005-06-06 Zoltan Varga <[email protected]>
  218. * Assembly.cs ExceptionHandlingClause.cs: Fix build.
  219. * ProcessorArchitecture.cs: New file.
  220. * ExceptionHandlingClause.cs: Update after ExceptionHandlingClauseFlags name change.
  221. * *.cs: Updates for net 2.0 beta 2.
  222. * *.cs: Add net 2.0 ComVisibleAttribute.
  223. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  224. * Assembly.cs: if the assembly is loaded from a byte array, Location
  225. returns "". Fixes bug #74958.
  226. 2005-06-03 Carlos Alberto Cortez <[email protected]>
  227. * AssemblyName.cs: Changes to support the creation of version
  228. instance from icalls. This change also helps to keep the
  229. AssemblyName tests running fine.
  230. 2005-05-26 Ben Maurer <[email protected]>
  231. * Binder.cs: Avoid double checked locking and lock on typeof by
  232. doing init of the default binder in the cctor.
  233. 2005-05-25 Zoltan Varga <[email protected]>
  234. * Assembly.cs: Avoid security checks if Assembly.Location is "".
  235. 2005-05-20 Zoltan Varga <[email protected]>
  236. * TypeDelegator.cs: Implement some methods.
  237. * TypeDelegator.cs: Revert this as it breaks the build.
  238. * TypeDelegator.cs: Implement some methods.
  239. 2005-05-19 Satya Sudha K <[email protected]>
  240. Raja R Harinath <[email protected]>
  241. * Missing.cs (Missing.Value): Initialize.
  242. 2005-05-17 Lluis Sanchez Gual <[email protected]>
  243. * Binder.cs: Use IsInstanceOfType instead of IsAssignableFrom
  244. since GetType() may not return the correct type if the object is
  245. a remoting proxy. This fixes bug #74933.
  246. 2005-05-13 Zoltan Varga <[email protected]>
  247. * MonoField.cs: Applied patch from Opened by Michael Meeks ([email protected]). Improve exception message on binding failures.
  248. 2005-05-09 Lluis Sanchez Gual <[email protected]>
  249. * MonoField.cs: Added a Clone method. This is needed for serialization.
  250. 2005-05-07 Ben Maurer <[email protected]>
  251. * MonoEvent.cs (Get*Method): Handle nonPublic. Fixes #64191.
  252. 2005-05-06 Zoltan Varga <[email protected]>
  253. * Module.cs: Update for beta 2.
  254. * CustomAttributeData.cs MethodBody.cs: Remove CLSCompliant (false) attributes.
  255. 2004-05-03 Lluis Sanchez <[email protected]>
  256. * Assembly.cs: Don't remove version and culture information from
  257. the name, since it will be used by load_with_partial_name.
  258. 2005-04-14 Sebastien Pouliot <[email protected]>
  259. * Assembly.cs: Added some CAS security to avoid returning restricted
  260. information to partially truster callers (e.g. code base). Added new
  261. methods to get the Evidence and AssemblyName so that the security
  262. runtime can bootstrap itself (without calling itself).
  263. 2005-04-14 Sebastien Pouliot <[email protected]>
  264. * Assembly.cs: Added missing null check in GetObjectData.
  265. 2005-04-04 Sebastien Pouliot <[email protected]>
  266. * AssemblyName.cs: Added a demand for SerializationFormatter on
  267. GetObjectData method.
  268. 2005-04-04 Sebastien Pouliot <[email protected]>
  269. * AssemblyName.cs: Implemented EscapedCodeBase using the copy of
  270. System.Uri (System.dll) located in Mono.Security.Uri. Added missing
  271. null check in GetObjectData.
  272. * Module.cs: Added a FileIOPermission for PathDiscovery on
  273. FullyQualifiedName property (but not on Name property like MS).
  274. Added missing null check in GetObjectData.
  275. * StrongNameKeyPair.cs: Added demands for unmanaged code to all
  276. constructors (as we do not want partially trusted code to create
  277. strongnamed assemblies).
  278. 2005-03-30 Zoltan Varga <[email protected]>
  279. * Binder.cs (check_type): Fix byref support. Fixes #73972.
  280. 2005-03-24 Sebastien Pouliot <[email protected]>
  281. * MemberInfo.cs: Add an InheritanceDemand for Unrestricted on class.
  282. * Module.cs: Add a LinkDemand for SerializationFormatter on
  283. GetObjectData method.
  284. 2005-03-16 Sebastien Pouliot <[email protected]>
  285. * Assembly.cs: Implemented EscapedCodeBase using the copy of
  286. System.Uri (System.dll) located in Mono.Security.Uri. Fix bug #73663.
  287. 2005-03-11 Sebastien Pouliot <[email protected]>
  288. * MonoMethod.cs: Promote a LinkDemand (if present) to a full Demand
  289. (i.e. stack walk) when reflection is being used to invoke a method.
  290. 2005-02-24 Carlos Alberto Cortez <[email protected]>
  291. * Assembly.cs: LoadFrom: Change signature to support reflection only
  292. methods; ReflectionOnlyLoad, ReflectionOnlyLoadFrom 2.0 methods
  293. implemented; InvalidOperationException's re-thrown by CreateInstance.
  294. Also ReflectionOnly 2.0 property added.
  295. * MonoMethod.cs: InvalidOperationException's are re-thrown when calling
  296. Invoke method on reflection only assemblies.
  297. 2005-02-22 Raja R Harinath <[email protected]>
  298. * FieldInfo.cs (GetFieldOffset): Make 'virtual' rather than
  299. 'abstract' so that this class can be derived outside of corlib.
  300. 2005-02-16 Miguel de Icaza <[email protected]>
  301. * MonoEvent.cs: Put new methods here.
  302. * EventInfo.cs: Move the methods GetCustomAttributes, and
  303. IsDefined from EventInfo to MonoEvent.
  304. Remove the methods that were not supposed to be exposed: Name,
  305. ReflectedType, DeclaringType.
  306. 2005-02-12 Chris Toshok <[email protected]>
  307. * Assembly.cs: Correct the type of MonoDebugger_MakeArrayType.
  308. 2005-02-12 Ben Maurer <[email protected]>
  309. * Binder.cs (SelectProperty): Use -1 as the dummy `I don't know
  310. how many types' value.
  311. 2005-02-11 Zoltan Varga <[email protected]>
  312. * Assembly.cs: Fix warning.
  313. 2005-02-10 Martin Baulig <[email protected]>
  314. * Module.cs (MonoDebugger_ResolveType): New internal method.
  315. * Assembly.cs (MonoDebugger_MakeArrayType): New internal method.
  316. (MonoDebugger_GetTypeToken): New internal method.
  317. 2005-02-10 Martin Baulig <[email protected]>
  318. * Assembly.cs (MonoDebugger_GetMethodIndex): New internal method.
  319. 2005-02-10 Marek Safar <[email protected]>
  320. * Assembly.cs,
  321. * ConstructorInfo.cs,
  322. * EventInfo.cs,
  323. * FieldInfo.cs,
  324. * MemberInfo.cs,
  325. * MethodBase.cs,
  326. * MethodInfo.cs,
  327. * PropertyInfo.cs: ClassInterfaceType is None.
  328. Thu Feb 3 15:22:55 CET 2005 Paolo Molaro <[email protected]>
  329. * Module.cs: removed the finalizer and the now unused Close() icall.
  330. 2005-01-21 Sebastien Pouliot <[email protected]>
  331. * Assembly.cs: Fixed add for ModuleResolve.
  332. 2005-01-19 Zoltan Varga <[email protected]>
  333. * LocalVariableInfo.cs: Add ToString method.
  334. * ExceptionHandlingClause.cs: Implement this.
  335. 2005-01-18 Zoltan Varga <[email protected]>
  336. * MethodBase.cs MonoMethod.cs: Hopefully fix the build.
  337. * MethodBase.cs MonoMethod.cs: Implement 2.0 GetMethodBody ().
  338. 2005-01-03 Martin Baulig <[email protected]>
  339. * MonoGenericMethod.cs
  340. (MonoGenericMethod.get_reflected_type): Removed.
  341. (MonoGenericMethod.ReflectedType): Make this an icall.
  342. (MonoGenericCMethod.ReflectedType): Likewise.
  343. 2004-12-29 Martin Baulig <[email protected]>
  344. * MonoGenericMethod.cs: New file.
  345. 2004-12-21 Sebastien Pouliot <[email protected]>
  346. * Assembly.cs: Added private LoadAssemblyPermissions to get the
  347. declarative security permission sets (minimum, optional and refused)
  348. for the assembly.
  349. 2004-12-20 Sebastien Pouliot <[email protected]>
  350. * Assembly.cs: Removed old Demand support (moved in System.Security).
  351. 2004-12-16 Zoltan Varga <[email protected]>
  352. * CustomAttributeData.cs MethodBody.cs: Reenable some 2.0 code now that
  353. the gmcs bugs blocking them are fixed.
  354. 2004-12-08 Zoltan Varga <[email protected]>
  355. * Assembly.cs: Move corlib_internal field to AssemblyBuilder.
  356. 2004-12-06 Zoltan Varga <[email protected]>
  357. * Assembly.cs: Add corlib_internal field.
  358. 2004-11-30 Martin Baulig <[email protected]>
  359. * MonoGenericInst.cs: Renamed to MonoGenericClass.cs and also
  360. renamed the class from `MonoGenericInst' to `MonoGenericClass'.
  361. 2004-11-05 Zoltan Varga <[email protected]>
  362. * AssemblyName.cs (FullName): Omit default values from full name.
  363. * Assembly.cs: Implement GetFiles (bool).
  364. * Binder.cs: Add support for byref types. Fixes #69140.
  365. 2004-10-12 Martin Baulig <[email protected]>
  366. * MonoGenericInst.cs (MonoGenericInst): Call initialize() just
  367. before calling the *_internal() methods.
  368. 2004-10-12 Zoltan Varga <[email protected]>
  369. * MethodBody.cs: Implement this.
  370. 2004-10-08 Zoltan Varga <[email protected]>
  371. * Module.cs: Handle the case when the global type does not exists.
  372. 2004-10-03 Zoltan Varga <[email protected]>
  373. * LocalVariableInfo.cs: Reorganize fields so LocalBuilder can inherit
  374. from this class.
  375. 2004-09-28 Zoltan Varga <[email protected]>
  376. * PropertyInfo.cs (OptionalCustomModifiers): Add [MonoTODO].
  377. * PropertyInfo.cs: Add stub for GetConstantValue ().
  378. * ParameterInfo.cs (marshalAs): Make this private.
  379. * Module.cs (ModuleHandle): Add [CLSCompliant(false)].
  380. * LocalVariableInfo.cs MethodBody.cs: Disable default constructor.
  381. * ExceptionHandlingClause.cs: Disable default constructor.
  382. 2004-09-27 Zoltan Varga <[email protected]>
  383. * CustomAttributeData.cs CustomAttributeTypedArgument.cs
  384. CustomAttributeNamedArgument.cs: New files.
  385. * MethodBody.cs LocalVariableInfo.cs ExceptionHandlingClause.cs
  386. ExceptionHandlingClauseFlags.cs: New files.
  387. 2004-09-26 Zoltan Varga <[email protected]>
  388. * FieldInfo.cs: Add support for returning MarshalAsAttribute.
  389. * ParameterInfo.cs: Add marshalAs field, add support for returning
  390. MarshalAsAttribute.
  391. 2004-09-25 Zoltan Varga <[email protected]>
  392. * Module.cs: Add new 2.0 GetMethods and GetFields methods.
  393. * ParameterInfo.cs: Add GetPseudoCustomAttributes () method.
  394. 2004-09-24 Zoltan Varga <[email protected]>
  395. * MonoField.cs: Add GetFieldOffset.
  396. * ObfuscationAttribute.cs: Add ApplyToMembers.
  397. * Assembly.cs: Add stub for ReflectionOnlyLoadFrom.
  398. * Assembly.cs (LoadWithPartialName): Add [ComVisible] attribute.
  399. * MonoMethod.cs FieldInfo.cs: Add GetPseudoCustomAttributes () method.
  400. * AssemblyNameFlags.cs: Add LongevityUnspecified.
  401. 2004-09-23 Zoltan Varga <[email protected]>
  402. * Module.cs: Remove [MonoTODO] from ResolveMember.
  403. * MemberInfo.cs: Add 'Module' property.
  404. * AssemblyFlagsAttribute.cs: Add 2.0 stuff.
  405. * Assembly.cs: Add stubs for ReflectionOnlyLoad methods. Add [Obsolete]
  406. to LoadWithPartialName on 2.0.
  407. * AssemblyNameFlags.cs: Add new 2.0 members.
  408. * FieldInfo.cs MonoField.cs PropertyInfo.cs ParameterInfo.cs MonoProperty.cs: Add stubs for Optinal/RequiredCustomModifiers.
  409. * ObfuscationAttribute.cs ObfuscateAssemblyAttribute.cs: New files.
  410. * EventInfo.cs: Fix 2.0 build.
  411. * MonoEvent.cs (MonoEventInfo): Add 'other_methods' field.
  412. * EventInfo.cs MonoEvent.cs: Add NET 2.0 GetOtherMethods method.
  413. 2004-09-22 Zoltan Varga <[email protected]>
  414. * Module.cs: Implement net 2.0 ResolveXXX methods.
  415. * Module.cs (resolve_token_exception): Fix type of exception thrown.
  416. 2004-09-21 Martin Baulig <[email protected]>
  417. * Assembly.cs (MonoDebugger_CheckRuntimeVersion): New internal method.
  418. 2004-09-20 Zoltan Varga <[email protected]>
  419. * Assembly.cs: Implement 2.0 reflection properties.
  420. * Module.cs: Implement 2.0 reflection properties. Add 'token' field.
  421. 2004-09-19 Zoltan Varga <[email protected]>
  422. * PortableExecutableKind.cs ImageFileMachine.cs: Make this internal
  423. under 1.0.
  424. * MemberInfo.cs ParameterInfo.cs: Add MetadataToken property.
  425. * Module.cs: Add ModuleHandle property and new icalls.
  426. 2004-09-18 Zoltan Varga <[email protected]>
  427. * Module.cs: Add net 2.0 Mvid property.
  428. 2004-08-30 Sebastien Pouliot <[email protected]>
  429. * Assembly.cs: Added internal Demand(PermissionSet) for CAS.
  430. 2004-08-30 Zoltan Varga <[email protected]>
  431. * MethodBase.cs (GetMethodFromHandle): Avoid passing a valuetype to
  432. icalls.
  433. 2004-08-29 Zoltan Varga <[email protected]>
  434. * MethodBase.cs (GetMethodFromHandle): Implement.
  435. 2004-08-13 Marek Safar <[email protected]>
  436. * Assembly.cs: Made _minimum, _optional, _refuse fields internal.
  437. To be reusable by AssemblyBuilder.
  438. 2004-08-09 Sebastien Pouliot <[email protected]>
  439. * Assembly.cs: Fixed some exceptions in NET_1_1 and added some 2.0
  440. properties (required for compiling the new unit tests).
  441. * PortableExecutableKind.cs: New. Flags for NET_2_0.
  442. * ImageFileMachine.cs: New. (Rather limited) enum for NET_2_0.
  443. 2004-08-08 Sebastien Pouliot <[email protected]>
  444. * Assembly.cs: Get default evidences when no evidences have been
  445. supplied. Added internal methods for CAS.
  446. * AssemblyName.cs: New constructor for NET_2_0.
  447. 2004-08-05 Sebastien Pouliot <[email protected]>
  448. * Assembly.cs: Added new fields for CAS to match the runtime (v23).
  449. 2004-07-29 Martin Baulig <[email protected]>
  450. * Module.cs (Mono_GetGuid): Make this static.
  451. Sat Jul 10 15:48:34 CEST 2004 Paolo Molaro <[email protected]>
  452. * Module.cs: return just name in ToString (bug #61287).
  453. 2004-07-03 Zoltan Varga <[email protected]>
  454. * Module.cs: Initialize FilterTypeName[IgnoreCase]. Fixes #61048.
  455. 2004-06-17 Gert Driesen <[email protected]>
  456. * Pointer.cs: remove serializable attribute to match MS.NET
  457. 2004-06-17 Gert Driesen <[email protected]>
  458. * ParameterModifier.cs: marked serializable, renamed field to match
  459. MS.NET, throw ArgumentException when parameter count is less than or
  460. equal to zero
  461. 2004-06-15 Gert Driesen <[email protected]>
  462. * AssemblyName.cs: added TODO for serialization
  463. * Pointer.cs: fixed Box method to return object instead of
  464. Pointer
  465. 2004-06-15 Sebastien Pouliot <[email protected]>
  466. * MemberInfo.cs: Changed constructor from internal to protected.
  467. 2004-06-11 Martin Baulig <[email protected]>
  468. * FieldInfo.cs (Mono_GetGenericFieldDefinition): New method for NET_2_0.
  469. 2004-06-11 Lluis Sanchez <[email protected]>
  470. * StrongNameKeyPair.cs: Catch exception when getting PublicKey to match
  471. MS implementation. Generate the RSA in the constructors.
  472. 2004-06-10 Lluis Sanchez <[email protected]>
  473. * AssemblyName.cs: Added missing fields to serialization methods.
  474. * StrongNameKeyPair.cs: Made it compatible with MS serialization.
  475. 2004-06-08 Jacson Harper <[email protected]>
  476. * AssemblyName.cs (GetAssemblyName): Send a fullpath to the
  477. runtime. This way the codebase is set properly. The codebase is
  478. using g_filename_to_uri which expects a full path.
  479. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  480. * Binder.cs: don't crash when we have a 'null' argument Type array.
  481. Allow it for non-value types. Fixed for both, methods and properties.
  482. Closes bug #58846.
  483. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  484. * Binder.cs: default score must be lower than fail_score or we'll get
  485. an ambiguous match when no indexers given and one single match is found.
  486. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  487. * Binder.cs: removed ^Ms. In case of several properties matching, try
  488. to disambiguate based on the indexer types provider and the conversions
  489. from those into the ones of the property.
  490. 2004-05-31 Gert Driesen <[email protected]>
  491. * Assembly.cs: added missing ComVisible attribute on
  492. ImageRuntimeVersion property
  493. * ConstructorInfo.cs: added missing attributes on Invoke
  494. * EventInfo.cs: added missing attributes
  495. * FieldInfo.cs: added missing attributes
  496. * MethodBase.cs: added missing attributes
  497. * PropertyInfo.cs: added missing attributes
  498. 2004-05-22 Cesar Lopez Nataren <[email protected]>
  499. * FieldInfo.cs: changed default constructor from internal to protected, so classes
  500. that inherit from it can get build.
  501. 2004-05-18 Gert Driesen ([email protected])
  502. * MonoProperty.cs: return correct MethodInfo for
  503. property with only a get or set method. Fixes
  504. bug #58661.
  505. 2004-05-18 Sebastien Pouliot <[email protected]>
  506. * Assembly.cs: Return an empty Evidence collection to avoid
  507. NullReferenceException from calling code (as this is never
  508. null with MS implementation). See bugzilla #53548.
  509. 2004-05-14 Zoltan Varga <[email protected]>
  510. * Assembly.cs: Add stub for LoadFrom.
  511. * Assembly.cs: Fix build.
  512. 2004-05-13 Zoltan Varga <[email protected]>
  513. * Assembly.cs: Add ModuleResolve event.
  514. * Module.cs (Mono_GetGuid): Make this internal.
  515. * FieldInfo.cs: Add stubs for {Get,Set}ValueDirect.
  516. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  517. * Binder.cs: check for ambiguous matches in SelectMethod and
  518. SelectProperty. Fixes bug #58381.
  519. 2004-05-06 Jackson Harper <[email protected]>
  520. * Assembly.cs: remove TODO, this is done.
  521. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  522. * Assembly.cs: ToString () returns the same as GetName ().ToString ().
  523. Fixes bug #58104.
  524. 2004-05-03 Jackson Harper <[email protected]>
  525. * Assembly.cs: Implement LoadWithPartialName. The bulk of this
  526. method is done in the runtime.
  527. 2004-04-29 Lluis Sanchez Gual <[email protected]>
  528. * MonoProperty.cs: Property.GetGetMethod() does not return the method if it
  529. is private (it did until now because of a bug). Make sure it works as it
  530. worked before the fix.
  531. 2004-04-27 Lluis Sanchez Gual <[email protected]>
  532. * ICustomAttributeProvider.cs, IReflect.cs, MemberInfo.cs, AssemblyName.cs:
  533. Removed completed TODOs.
  534. * MonoProperty.cs: In GetAccessors(), GetGetMethod() and GetSetMethod(),
  535. do not return private methods if nonPublic == false.
  536. * ReflectionTypeLoadException.cs: Implemented serialization support.
  537. 2004-04-26 Jackson Harper <[email protected]>
  538. * Assembly.cs: Add icall to determine if an assembly has been
  539. loaded from the GAC.
  540. 2004-04-23 Atsushi Enomoto <[email protected]>
  541. * MethodBase.cs, MonoMethod.cs, TypeDelegator.cs :
  542. The fix should be easier ;)
  543. 2004-04-23 Atsushi Enomoto <[email protected]>
  544. * MethodBase.cs, MonoMethod.cs, TypeDelegator.cs :
  545. NET_2_0 related build fix.
  546. 2004-04-19 Lluis Sanchez Gual <[email protected]>
  547. * Assembly.cs: Removed TODO for CreateQualifiedName.
  548. * AssemblyName.cs: Fixed serialization code.
  549. * AssemblyNameProxy.cs: Implemented.
  550. * Module.cs: Implemented GetMethod() methods, FindTypes() and GetObjectData.
  551. 2004-04-07 Martin Baulig <[email protected]>
  552. * MonoGenericInst.cs (MonoGenericParam): Removed.
  553. 2004-04-07 Martin Baulig <[email protected]>
  554. * MethodBase.cs
  555. (MethodBase.GetGenericParameters): Renamed to GetGenericArguments().
  556. * MonoGenericInst.cs (MonoGenericInst.DeclaringType): Removed.
  557. (MonoGenericInst.GetNestedTypes): Just call
  558. `generic_type.GetNestedTypes (bf)' here.
  559. * MonoMethod.cs (MonoMethod.ToString): If we're a generic method,
  560. include the type arguments.
  561. 2004-04-06 Sebastien Pouliot <[email protected]>
  562. * StrongNameKeyPair.cs: Added support for ECMA "key". Now returns a
  563. correct StrongName instance when the ECMA "key" is used.
  564. 2004-04-02 Martin Baulig <[email protected]>
  565. * MonoGenericInst.cs (MonoGenericInst.DeclaringType): Override.
  566. 2004-04-01 Martin Baulig <[email protected]>
  567. * MonoGenericInst.cs (MonoGenericParam.IsValueTypeImpl): Override
  568. this and always return false.
  569. 2004-04-01 Martin Baulig <[email protected]>
  570. * MonoGenericInst.cs (MonoGenericParam.IsSubclassOf): Override this.
  571. 2004-03-30 Martin Baulig <[email protected]>
  572. * MonoGenericInst.cs
  573. (MonoGenericParam): Added `bool has_ctor_constraint' field.
  574. (MonoGenericParam.SetConstraints): Added `bool
  575. has_ctor_constraint' argument.
  576. 2004-03-29 Martin Baulig <[email protected]>
  577. * MethodBase.cs (MethodBase.Mono_IsInflatedMethod): New public
  578. virtual property.
  579. (MethodBase.HasGenericParameters): Use the "official" behavior
  580. here, ie. return false if we're not a generic method.
  581. 2004-03-29 Martin Baulig <[email protected]>
  582. * MethodBase.cs: Moved the generics stuff here, made it virtual
  583. where neccessary and use the correct API.
  584. 2004-03-24 Sebastien Pouliot <[email protected]>
  585. * StrongNameKeyPair.cs: Added an internal method to return a
  586. StrongName object (for AssemblyBuilder). Simplified implementation
  587. using Mono.Security.Cryptography.CryptoConvert class.
  588. 2004-03-24 Zoltan Varga <[email protected]>
  589. * AssemblyFileVersionAttribute.cs (.ctor): Add argument checking.
  590. 2004-03-23 Martin Baulig <[email protected]>
  591. * MonoGenericInst.cs: Added support for events.
  592. 2004-03-23 Martin Baulig <[email protected]>
  593. * MonoMethod.cs (MonoMethod.ToString): Don't include the namespace
  594. if it's the empty string.
  595. 2004-03-10 Martin Baulig <[email protected]>
  596. * MethodBase.cs (MethodBase): Implemented
  597. GetGenericMethodDefinition() and HasGenericParameters.
  598. 2004-03-09 Martin Baulig <[email protected]>
  599. * MonoEvent.cs (MonoEventInfo): Replaced `parent' with
  600. `declaring_type' and `reflected_type'.
  601. (MonoEvent): Distinguish between declaring and reflected type.
  602. 2004-02-25 Martin Baulig <[email protected]>
  603. * MonoGenericInst.cs
  604. (MonoGenericInst.GetNestedTypes): Override this.
  605. 2004-02-24 Gonzalo Paniagua Javier <[email protected]>
  606. * Binder.cs:
  607. (SelectProperty): check the return Type if provided.
  608. 2004-02-17 Martin Baulig <[email protected]>
  609. * MonoGenericInst.cs (MonoGenericInst.GetProperties): Added
  610. support for properties.
  611. 2004-02-17 Martin Baulig <[email protected]>
  612. * MonoGenericInst.cs (MonoGenericInst.GetMethods): Walk up the
  613. class hierarchy and return members from the parent classes.
  614. (GetConstructors, GetFields): Likewise.
  615. 2004-02-17 Martin Baulig <[email protected]>
  616. * MonoGenericInst.cs (MonoGenericInst.initialize): Don't inflate
  617. all the members here; we only do this for members of the current
  618. class and only when they're actually queried for.
  619. 2004-02-12 Martin Baulig <[email protected]>
  620. * MonoGenericInst.cs (MonoInflatedField): Removed.
  621. * MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): Removed.
  622. 2004-02-08 Martin Baulig <[email protected]>
  623. * MonoGenericInst.cs (MonoGenericInst.inflate): Pass recursive
  624. invocations the `reflected' type as `reflected', not `this'.
  625. (MonoInflatedMethod, MonoInflatedCtor): Reflect latest runtime changes.
  626. 2004-02-08 Martin Baulig <[email protected]>
  627. * MonoGenericInst.cs (MonoGenericInst.GetParentType): New interncall.
  628. (MonoGenericInst.GetInterfaces_internal): New interncall.
  629. (MonoGenericInst): Reflect latest API changes; use GetParentType()
  630. and GetInterfaces_internal() instead of the fields.
  631. 2004-02-06 Martin Baulig <[email protected]>
  632. * MonoGenericInst.cs (MonoGenericInst.DeclaringType): Override this.
  633. 2004-02-03 Martin Baulig <[email protected]>
  634. * MonoGenericInst.cs (MonoGenericInst.GetInterfaces): Override this.
  635. 2004-01-25 Martin Baulig <[email protected]>
  636. * MonoGenericInst.cs: Honor BindingFlags.DeclaredOnly.
  637. 2004-01-19 Zoltan Varga <[email protected]>
  638. * Assembly.cs (GetManifestResourceStream): Make the IntPtrStream keep
  639. a reference on the Module object which contains the resource.
  640. * Module.cs: Decrease the image reference count when the Module is
  641. garbage collected.
  642. 2004-01-16 Martin Baulig <[email protected]>
  643. * Assembly.cs: Make the `MonoDebugger_' methods static.
  644. 2004-01-16 Gonzalo Paniagua Javier <[email protected]>
  645. * MonoProperty.cs: changed get_property_info so that it only gets the
  646. values needed. Reduces the allocations needed.
  647. 2004-01-15 Martin Baulig <[email protected]>
  648. * Assembly.cs: Make the `MonoDebugger_' methods internal.
  649. 2004-01-04 Nick Drochak <[email protected]>
  650. * Assembly.cs: Removed unused variable in catch block.Eliminates a build
  651. warning.
  652. 2003-12-29 Ben Maurer <[email protected]>
  653. * MethodBase.cs: Internal method to get param count (this
  654. way we can get the info for the ilgen without creating
  655. an array, if we override the method).
  656. 2003-12-18 Zoltan Varga <[email protected]>
  657. * Assembly.cs: Implement LoadFrom.
  658. 2003-12-17 Zoltan Varga <[email protected]>
  659. * Assembly.cs: Add stubs for LoadFile.
  660. 2003-12-16 Zoltan Varga <[email protected]>
  661. * Assembly.cs (GetManifestResourceStream): Only load non-embedded
  662. resources from files.
  663. 2003-12-15 Zoltan Varga <[email protected]>
  664. * MonoField.cs (SetValue): Throw an exception if the value cannot be
  665. converted to the field's type. Fixes #52177.
  666. 2003-12-11 Lluis Sanchez Gual <[email protected]>
  667. * AmbiguousMatchException.cs: Added serialization constructor.
  668. 2003-12-08 Martin Baulig <[email protected]>
  669. * MonoGenericInst.cs (MonoGenericParam): New internal class;
  670. derives from MonoType.
  671. 2003-12-08 Patrik Torstensson <[email protected]>
  672. * Binder.cs: Added internal helpers to get derived level and select the
  673. most derived methodbase (used in GetMethodImpl)
  674. 2003-11-25 Zoltan Varga <[email protected]>
  675. * Assembly.cs (LoadWithPartialName): Return null instead of throwing
  676. an exception to match MS behavior.
  677. 2003-11-24 Zoltan Varga <[email protected]>
  678. * MonoMethod.cs: Add missing constructor.
  679. 2003-11-21 Zoltan Varga <[email protected]>
  680. * MethodBase.cs (Invoke): Make this virtual under NET 1.2.
  681. 2003-11-16 Martin Baulig <[email protected]>
  682. * MonoGenericInst.cs (MonoGenericInst.inflate): Call
  683. `parent.inflate (parent,...)' instead of
  684. `parent.inflate (reflected,...)'.
  685. 2003-11-16 Zoltan Varga <[email protected]>
  686. * Assembly.cs (InternalGetAssemblyName): New icall.
  687. * AssemblyName.cs (GetAssemblyName): Implement this without loading
  688. the assembly in question. Fixes #51035.
  689. 2003-11-14 Martin Baulig <[email protected]>
  690. * MonoGenericInst.cs (MonoGenericInst): Added
  691. `MonoGenericInst[] interfaces' field. This is only used for
  692. interface types.
  693. (MonoGenericInst.inflate): If we're an interface type, add the
  694. methods from all interfaces we inherit.
  695. 2003-11-14 Zoltan Varga <[email protected]>
  696. * AssemblyNameFlags.cs MethodAttributes.cs: Add new enumerated values
  697. from NET 1.1.
  698. * *.cs: Add missing attributes.
  699. 2003-11-11 Todd Berman <[email protected]>
  700. * AssemblyName.cs (FullName): Fixed to include a proper PublicKeyToken.
  701. 2003-11-11 Zoltan Varga <[email protected]>
  702. * MonoMethod.cs: Implement CallingConvention member.
  703. 2003-11-10 Zoltan Varga <[email protected]>
  704. * Assembly.cs (InternalGetType): Add a 'module' argument so this
  705. method can be used from Module as well.
  706. * Module.cs (GetType): Implement.
  707. * Module.cs (GetTypes): Implement.
  708. * Module.cs: Remove some [MonoTODO] attributes from implemented methods.
  709. 2003-11-08 Martin Baulig <[email protected]>
  710. * MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): Added
  711. a private `IntPtr ginst' field.
  712. (MonoGenericInst.IsValueTypeImpl, inflate): Allow interfaces.
  713. 2003-11-02 Martin Baulig <[email protected]>
  714. * MonoGenericInst.cs (MonoGenericInst.initialize): Include members
  715. from our parent classes in the `methods', `ctors' and `fields'
  716. arrays. When inflating them, reflection now sets their
  717. `declaring_type' and `reflected_type' fields.
  718. (MonoInflatedMethod, MonoInflatedCtor): Added
  719. `MonoGenericInst declaring_type' and `MonoGenericInst reflected_type'
  720. fields and override the `DeclaringType' and `ReflectedType' properties.
  721. 2003-11-02 Martin Baulig <[email protected]>
  722. * MonoGenericInst.cs (MonoGenericInst.IsValueTypeImpl): Override this.
  723. 2003-10-31 Martin Baulig <[email protected]>
  724. * MonoGenericInst.cs (MonoInflatedField): New internal class.
  725. (MonoGenericInst.GetFields): Override this method and inflate
  726. the fields.
  727. * MonoField.cs: Don't make this class sealed.
  728. 2003-10-30 Martin Baulig <[email protected]>
  729. * MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): New
  730. internal classes.
  731. 2003-10-25 Martin Baulig <[email protected]>
  732. * MonoGenericInst.cs: New internal class.
  733. 2003-10-18 Martin Baulig <[email protected]>
  734. * MethodInfo.cs (MethodInfo.GetGenericArguments): Make this method
  735. abstract; use an interncall in MonoMethod and a custom
  736. implementation in MethodBuilder.
  737. 2003-10-17 Pedro Martínez Juliá <[email protected]>
  738. * MonoEvent.cs: implement ToString method as in MS.NET.
  739. * MonoMethod.cs: fix some differences between mono and MS.NET
  740. implementation of ToString.
  741. 2003-10-17 Zoltan Varga <[email protected]>
  742. * AssemblyName.cs: Fix Version property when some version fields are
  743. undefined.
  744. 2003-10-17 Martin Baulig <[email protected]>
  745. * MethodInfo.cs (MethodInfo.GetGenericArguments): New method.
  746. (MethodInfo.BindGenericParameters): New method.
  747. 2003-10-16 Martin Baulig <[email protected]>
  748. * MethodInfo.cs (MethodInfo.IsGenericMethodDefinition): New
  749. property.
  750. 2003-08-08 Lluis Sanchez Gual <[email protected]>
  751. * ParameterInfo.cs: Modified constructor of ParameterInfo for
  752. the return type of a method. Since parameter positions are
  753. zero-based, the position of the return type must be is -1.
  754. 2003-08-06 Andreas Nahr <[email protected]>
  755. * TargetInvocationException.cs: Fixed signature
  756. 2003-07-24 Miguel de Icaza <[email protected]>
  757. * TypeDelegator.cs: Added generics stubs.
  758. 2003-07-21 Lluis Sanchez Gual <[email protected]>
  759. * ParameterInfo.cs: Position is zero-based in ParameterInfo.
  760. Set the right position value when getting from ParameterBuilder.
  761. Thu Jul 17 17:26:59 CEST 2003 Paolo Molaro <[email protected]>
  762. * FieldInfo.cs, MonoField.cs: cleanups. Cache some info and use
  763. finer-grained icalls. Requires a matching runtime.
  764. 2003-07-11 Zoltan Varga <[email protected]>
  765. * AssemblyFlagsAttribute.cs: Added new constructor from NET 1.1.
  766. * AssemblyFlagsAttribute.cs: Added new property from NET 1.1.
  767. 2003-07-10 Zoltan Varga <[email protected]>
  768. * Assembly.cs: Implemented ImageRuntimeVersion property from NET 1.1.
  769. Mon Jun 30 19:12:08 CEST 2003 Paolo Molaro <[email protected]>
  770. * Pointer.cs: implemented.
  771. 2003-06-15 Zoltan Varga <[email protected]>
  772. * EventInfo.cs: Implement IsSpecialName.
  773. 2003-06-10 Zoltan Varga <[email protected]>
  774. * Module.cs (Mono_GetGuid): New method to return the GUID of the
  775. module.
  776. 2003-05-21 Zoltan Varga <[email protected]>
  777. * Module.cs: Implement GetField and its friends.
  778. 2003-05-20 Zoltan Varga <[email protected]>
  779. * Assembly.cs (GetManifestResourceStream): Moved handling of
  780. linked resources into managed code using the newly implemented
  781. GetManifestResourceInfo () method.
  782. 2003-05-19 Zoltan Varga <[email protected]>
  783. * Module.cs: Implemented IsResource.
  784. * Assembly.cs: Implemented GetManifestResourceInfo, GetModules,
  785. GetModule, GetLoadedModules methods.
  786. * Assembly.cs (GetManifestResourceStream): Added support for
  787. resources in extern assemblies.
  788. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  789. * Assembly.cs: fixed bug #42833.
  790. 2003-05-11 Miguel de Icaza <[email protected]>
  791. * Binder.cs (ChangeType): Very simplistic change. Am not sure if
  792. it is correct, but it makes RemotingCorba move along a bit more
  793. (Remoting.Corba invokes Binder.ConvertArgs, which calls
  794. Binder.ChangeType with an Attribute [] to Object []).
  795. 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
  796. * Binder.cs:
  797. (check_type): fixed bug #41655.
  798. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  799. * Assembly.cs: implemented GetSatelliteAssembly.
  800. Fri Apr 11 13:06:10 CEST 2003 Paolo Molaro <[email protected]>
  801. * Assembly.cs: added GetNamespaces() icall.
  802. 2003-03-17 Zoltan Varga <[email protected]>
  803. * FieldInfo.cs (GetFieldFromHandle): Implemented.
  804. 2003-03-01 Gonzalo Paniagua Javier <[email protected]>
  805. * Assembly.cs: added missing stuff. Only ModuleResolve event is left
  806. out to avoid changing MonoReflectionAssembly by now.
  807. * ModuleResolveEventHandler.cs: delegate.
  808. 2003-02-19 Gonzalo Paniagua Javier <[email protected]>
  809. * TargetInvocationException.cs: added serialization ctor.
  810. 2003-02-18 Martin Baulig <[email protected]>
  811. * Assembly.cs (MonoDebugger_GetMethodToken): New method to get a
  812. method's metadata token.
  813. 2003-02-04 Sebastien Pouliot <[email protected]>
  814. * Module.cs: Corrected indentation for class.
  815. 2003-02-04 Gonzalo Paniagua Javier <[email protected]>
  816. * Binder.cs:
  817. (check_type): return true when the target type is object and the source
  818. is a value type.
  819. 2003-02-03 Patrik Torstensson
  820. * Binder.cs: minimize locking time in DefaultBinder.
  821. 2003-02-01 Sebastien Pouliot <[email protected]>
  822. * Module.cs: Oups - not implemented. Added MonoTODO to most methods
  823. so it's real status get reflected correctly on the web site.
  824. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  825. * MonoMethod.cs: implemented GetBaseDefinition ().
  826. 2003-01-28 Patrik Torstensson
  827. * MonoMethod.cs: Added support for serialization for MonoMethod and MonoCMethod
  828. * ReflectionSerializationHolder.cs: Support class for serialization
  829. 2003-01-17 Zoltan Varga <[email protected]>
  830. * ParameterInfo.cs: modified constructor so it allows the
  831. ParameterBuilder to be null and add a 'position' argument which will
  832. be used when pb is null.
  833. 2003-01-16 Lluis Sanchez Gual <[email protected]>
  834. * Assembly.cs: added serialization support.
  835. Sat Jan 4 18:26:41 CET 2003 Paolo Molaro <[email protected]>
  836. * MonoMethod.cs: propagate exceptions from the internal invoke
  837. code that need to be propagated.
  838. Sat Jan 4 18:04:07 CET 2003 Paolo Molaro <[email protected]>
  839. * Binder.cs: throw an exception if the number of arguments
  840. when invoking a method is incorrect.
  841. Thu Jan 2 19:04:58 CET 2003 Paolo Molaro <[email protected]>
  842. * Binder.cs: In SelectMethod() look for an exact match first.
  843. 2003-01-01 Rachel Hestilow <[email protected]>
  844. * MonoField.cs (SetValue): Fix logic typo. Check that obj is
  845. non-null only for the non-static case.
  846. 2002-12-30 Sebastien Pouliot <[email protected]>
  847. * AssemblyName.cs: Fixed null cultureinfo in FullName (as reported by
  848. Zoltan).
  849. 2002-12-23 Sebastien Pouliot <[email protected]>
  850. * AssemblyName.cs: GetPublicKey now return an empty array (not null)
  851. when an assembly isn't signed with a StrongName (to match MS
  852. implementation) and null when no assembly is referenced. Also removed
  853. commented code (no bug reported so it was probably not used).
  854. Thu Dec 19 16:43:19 CET 2002 Paolo Molaro <[email protected]>
  855. * MonoMethod.cs, ParameterInfo.cs: return a custom attribute
  856. provider for the return type of a method.
  857. 2002-12-08 Gonzalo Paniagua Javier <[email protected]>
  858. * AssemblyName.cs: little fix in FullName.
  859. 2002-12-07 Sebastien Pouliot <[email protected]>
  860. * AssemblyName.cs: Added missing methods/interfaces. Fixed some
  861. code to match the MS Framework.
  862. * StrongNameKeyPair.cs: Completed the "visible" implementation.
  863. There must be some internal methods to allow signing with the key.
  864. 2002-12-02 Gonzalo Paniagua Javier <[email protected]>
  865. * EventInfo.cs: implemented (Add|Remove)EventHandler.
  866. Mon Nov 18 17:52:56 CET 2002 Paolo Molaro <[email protected]>
  867. * Assembly.cs: implemented GetManifestResourceStream (Type type,
  868. * String name).
  869. 2002-11-03 Gonzalo Paniagua Javier <[email protected]>
  870. * Assembly.cs: changed name of GetType (string, bool, bool) to
  871. InternalGetType.
  872. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  873. * TargetInvocationException.cs: modified default message.
  874. 2002-10-01 Gonzalo Paniagua Javier <[email protected]>
  875. * MonoProperty.cs:
  876. * PropertyInfo.cs: fixed bug #31535.
  877. 2002-09-27 Martin Baulig <[email protected]>
  878. * Assembly.cs (Assembly.GetReferencedAssemblies): Implemented.
  879. 2002-09-24 Martin Baulig <[email protected]>
  880. * Assembly.cs (MonoDebugger_GetType): New method to get a Type
  881. from its metadata token. This should only be used by the debugger.
  882. 2002-09-21 Martin Baulig <[email protected]>
  883. * Assembly.cs (MonoDebugger_GetLocalTypeFromSignature): New method to
  884. get the type of a local variable from its signature. This should only
  885. be used by the debugger.
  886. 2002-09-20 Martin Baulig <[email protected]>
  887. * Assembly.cs (MonoDebugger_GetMethod): New method to get a MethodBase
  888. from its metadata token. This should only be used by the debugger.
  889. Wed Sep 11 12:50:54 CEST 2002 Paolo Molaro <[email protected]>
  890. * Binder.cs: more default binder implementation.
  891. * FieldInfo.cs, MonoField.cs: fixed SetValue () implementation.
  892. * MonoMethod.cs: use the binder in the Invoke () implementation.
  893. Implemented custom attributes methods and ToString for constructors.
  894. Thu Sep 5 20:36:27 CEST 2002 Paolo Molaro <[email protected]>
  895. * Binder.cs: finished the Binder class and implemented the default
  896. binder.
  897. 2002-09-03 Martin Baulig <[email protected]>
  898. * Assembly.cs (Assembly.Location): Implemented.
  899. 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
  900. * MonoField.cs:
  901. (GetValue): allow obj to be null (used for static fields).
  902. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  903. * MonoField.cs: GetValue renamed to GetValueInternal. Added check for
  904. null.
  905. Wed Aug 21 13:03:25 CEST 2002 Paolo Molaro <[email protected]>
  906. * Assembly.cs: GetEntryAssembly patch by Tomi Pakarinen
  907. <[email protected]>.
  908. 2002-08-20 Gonzalo Paniagua Javier <[email protected]>
  909. * Assembly.cs: FullName now returns a proper string instead of
  910. something like 'file://...'.
  911. * AssemblyName.cs: added missing ToString method.
  912. 2002-08-19 Gonzalo Paniagua Javier <[email protected]>
  913. * FieldInfo.cs: implemented SetValue.
  914. Wed Aug 14 17:37:30 CEST 2002 Paolo Molaro <[email protected]>
  915. * MonoEvent.cs, MonoMethod.cs: implemented ReflectedType.
  916. 2002-08-14 Dick Porter <[email protected]>
  917. * Assembly.cs: Stub out GetSatelliteAssembly
  918. 2002-08-12 Tim Coleman <[email protected]>
  919. * MonoProperty.cs:
  920. Allow multiple parameters for GetValue ()
  921. Thu Aug 8 13:05:44 CEST 2002 Paolo Molaro <[email protected]>
  922. * Assembly.cs: implemented GetFile() and GetFiles().
  923. Mon Aug 5 21:19:41 CEST 2002 Paolo Molaro <[email protected]>
  924. * Assembly.cs: implemented EntryPoint and a few
  925. resource related methods.
  926. Wed Jul 24 13:08:56 CEST 2002 Paolo Molaro <[email protected]>
  927. * MethodBase.cs: implemented GetCurrentMethod.
  928. * Assembly.cs: implemented GetExecutingAssembly and
  929. GetCallingassembly.
  930. Mon Jul 1 18:01:49 CEST 2002 Paolo Molaro <[email protected]>
  931. * MonoProperty.cs: handle properties with only a set method.
  932. 2002-05-24 Martin Baulig <[email protected]>
  933. * ParameterInfo.cs: Added internal constructor.
  934. Thu May 23 17:18:46 CEST 2002 Paolo Molaro <[email protected]>
  935. * Assembly.cs: implemented CreateInstance ().
  936. 2002-05-22 Martin Baulig <[email protected]>
  937. * MethodBase.cs (get_next_table_index): Added `object obj' argument.
  938. Tue May 21 12:07:40 CEST 2002 Paolo Molaro <[email protected]>
  939. * EventInfo.cs: more implementation.
  940. Mon May 20 17:37:39 CEST 2002 Paolo Molaro <[email protected]>
  941. * MonoEvent.cs: fill-in the implementation.
  942. Sat May 4 15:00:39 CEST 2002 Paolo Molaro <[email protected]>
  943. * Assembly.cs, AssemblyName.cs: updates and fixes.
  944. 2002-04-24 Patrik Torstensson <[email protected]>
  945. * MonoProperty.cs (GetValue) : basic implementation to support nunit
  946. * PropertyInfo.cs (GetValue) : call MonoProperty::GetValue instead of returning null
  947. Thu Apr 18 16:40:54 CEST 2002 Paolo Molaro <[email protected]>
  948. * MonoMethod.c: cache the method name.
  949. 2002-04-12 Duncan Mak <[email protected]>
  950. * AssemblyAlgorithmIdAttribute.cs: Fixed typo in AlgorithmId
  951. property.
  952. * AssemblyDelaySignAttribute.cs: Fixed type in DelaySign
  953. attribute.
  954. * AssemblyFileVersionAttribute.cs: Renamed FileVersion property to
  955. Version.
  956. * BindingFlags.cs: Added missing value "PutRefDispProperty".
  957. * FieldAttributes.cs: Removed value "HasSecurity".
  958. * ManifestResourceInfo.cs: Added missing properties FileName,
  959. ReferencedAssembly and ResourceLocation.
  960. * TargetInvocationException.cs: Added the missing constructors.
  961. Fri Apr 12 18:32:34 CEST 2002 Paolo Molaro <[email protected]>
  962. * MonoMethod.cs: make Name property an icall.
  963. 2002-04-08 Nick Drochak <[email protected]>
  964. * DefaultMemberAttribute.cs: Add AttributeUsage attribute for class,
  965. struct and interface.
  966. Fri Apr 5 15:40:24 CEST 2002 Paolo Molaro <[email protected]>
  967. * MonoEvent.cs: remove unused code.
  968. * MonoProperty: implement ToString().
  969. Wed Apr 3 17:59:26 CEST 2002 Paolo Molaro <[email protected]>
  970. * Assembly.cs: implement GetTypes() and GetExportedTypes().
  971. Mon Mar 25 18:54:58 CET 2002 Paolo Molaro <[email protected]>
  972. * MonoEvent.cs: added the needed fields.
  973. 2002-03-20 Martin Baulig <[email protected]>
  974. * ConstructorInfo.cs (Invoke): Implemented, call the abstract Invoke.
  975. * MonoMethod.cs (MonoCMethod.Invoke): Implemented, call InternalInvoke.
  976. 2002-03-14 Dietmar Maurer <[email protected]>
  977. * MonoMethod.cs (Invoke): call InternalInvoke
  978. * MethodBase.cs (Invoke): call virtual invoke function
  979. Thu Mar 7 17:14:20 CET 2002 Paolo Molaro <[email protected]>
  980. * EventInfo.cs: add compiler needed methods.
  981. * MonoMethod.cs: make ToString() return the return type name, too.
  982. 2002-03-07 Nick Drochak <[email protected]>
  983. * BindingFlags.cs: Add missing enum values. Thanks CorCompare.
  984. Tue Mar 5 20:33:14 CET 2002 Paolo Molaro <[email protected]>
  985. * TypeAttributes.cs, MethodImplAttributes.cs: updates to latest spec.
  986. 2002-02-26 Duncan Mak <[email protected]>
  987. * StrongNameKeyPair.cs: Committed for Kevin Winchester ([email protected]>.
  988. 2002-02-24 Nick Drochak <[email protected]>
  989. * AssemblyNameFlags.cs: Use proper member name. Thanks corcompare!
  990. Fri Feb 22 18:54:13 CET 2002 Paolo Molaro <[email protected]>
  991. * MonoField.cs: implement GetValue as an internalcall.
  992. Implemented ToString().
  993. Tue Feb 19 20:36:04 CET 2002 Paolo Molaro <[email protected]>
  994. * Assembly.cs, Module.cs, MonoField.cs, MonoMethod.cs,
  995. MonoProperty.cs, ParameterInfo.cs: Implemented custom attributes
  996. related methods.
  997. Thu Feb 14 18:55:23 CET 2002 Paolo Molaro <[email protected]>
  998. * TypeAttributes.cs: update to latest spec.
  999. Mon Feb 11 19:50:27 CET 2002 Paolo Molaro <[email protected]>
  1000. * Assembly.cs: handle throwOnError in GetType() call.
  1001. 2002-02-07 Duncan Mak <[email protected]>
  1002. * AssemblyName.cs: Implemented ISerializable interface for the
  1003. fields that we have.
  1004. 2002-02-05 Duncan Mak <[email protected]>
  1005. * Missing.cs:
  1006. * TargetException.cs: Added in CVS.
  1007. 2002-01-31 Duncan Mak <[email protected]>
  1008. * ReflectionTypeLoadException.cs: Added missing bits.
  1009. 2002-01-23 Duncan Mak <[email protected]>
  1010. * AssemblyAlgorithmIdAttribute.cs:
  1011. * AssemblyCompanyAttribute.cs:
  1012. * AssemblyConfigurationAttribute.cs:
  1013. * AssemblyCopyrightAttribute.cs:
  1014. * AssemblyCultureAttribute.cs:
  1015. * AssemblyDefaultAliasAttribute.cs:
  1016. * AssemblyDelaySignAttribute.cs:
  1017. * AssemblyDescriptionAttribute.cs:
  1018. * AssemblyFileVersionAttribute.cs:
  1019. * AssemblyFlagsAttribute.cs:
  1020. * AssemblyInformationalVersionAttribute.cs:
  1021. * AssemblyKeyFileAttribute.cs:
  1022. * AssemblyKeyNameAttribute.cs:
  1023. * AssemblyNameProxy.cs:
  1024. * AssemblyProductAttribute.cs:
  1025. * AssemblyTitleAttribute.cs:
  1026. * AssemblyTradeMarkAttribute.cs:
  1027. * AssemblyVersionAttribute.cs:
  1028. * CustomAttributeFormatException.cs:
  1029. * InvalidFilterCriteriaException.cs:
  1030. * TargetParameterCountException.cs: Added.
  1031. 2002-01-23 Miguel de Icaza <[email protected]>
  1032. * Assembly.cs (Assembly.CodeBase): Implement.
  1033. (Assembly.FullName): simplistic and broken implementation. Gets
  1034. us where we were yesterday.
  1035. Code style fix.
  1036. Tue Jan 22 22:54:18 CET 2002 Paolo Molaro <[email protected]>
  1037. * IReflect.cs: corrected GetMember() return type.
  1038. * InterfaceMapping.cs, TypeDelegator.cs: implemented.
  1039. Wed Jan 9 19:37:14 CET 2002 Paolo Molaro <[email protected]>
  1040. * MonoMethod.cs: ToString () implementation.
  1041. 2002-01-04 Ravi Pratap <[email protected]>
  1042. * Assembly.cs : Decorate missing bits with the MonoTODO
  1043. attribute.
  1044. * ConstructorInfo.cs, MonoMethod.cs, MonoProperty.cs, ParameterInfo.cs,
  1045. ReflectionTypeLoadException.cs : Ditto.
  1046. * FieldInfo.cs : Ditto.
  1047. Thu Jan 3 23:25:34 CET 2002 Paolo Molaro <[email protected]>
  1048. * Assembly.cs: trow unimplemented exceptions.
  1049. Tue Dec 18 18:46:22 CET 2001 Paolo Molaro <[email protected]>
  1050. * MonoMethod.cs: implemented GetParameters().
  1051. * MonoProperty.cs: PropertyInfo implementation.
  1052. * ParameterInfo.cs: implemented.
  1053. * PropertyInfo.cs: fixes.
  1054. Thu Dec 13 20:18:05 CET 2001 Paolo Molaro <[email protected]>
  1055. * FieldInfo.cs: implemented some Is* propeties.
  1056. * MethodBase.cs: fixed attribute accessors.
  1057. * MonoField.cs: runtime object to represent a field.
  1058. * MonoMethod.cs: runtime object to represent a method.
  1059. * AssemblyBuilder.cs: GetToken() methods to get tokens for
  1060. strings, fields, methods...
  1061. * ILGenerator.cs: handle tokens for methods.
  1062. Mon Nov 19 13:56:55 CET 2001 Paolo Molaro <[email protected]>
  1063. * MethodBase.cs: add internal get_next_table_index() for use in
  1064. Reflection.Emit.
  1065. Wed Nov 14 16:53:28 CET 2001 Paolo Molaro <[email protected]>
  1066. * Assembly.cs: implement some of the Load() methods.
  1067. * ConstructorInfo.cs: some missing stubs and fields.
  1068. * FieldInfo.cs: IsInitOnly property.
  1069. * ParameterInfo.cs: stubs for missing properties.
  1070. * ParameterModifier.cs: implemented class.
  1071. 2001-11-10 Sean MacIsaac <[email protected]>
  1072. * Assembly.cs: Filled in some stub implementations
  1073. * ConstructorInfo.cs: Added some stub functions for NUnit
  1074. Fri Nov 2 18:29:36 CET 2001 Paolo Molaro <[email protected]>
  1075. * AmbiguousMatchException.cs,
  1076. * Assembly.cs, Module.cs: updates.
  1077. * FieldInfo.cs: better compliance to the spec.
  1078. * MethodBase.cs: move call_conv out of the way.
  1079. * AssemblyBuilder.cs: don't use internalcalls, more stuff supported.
  1080. * FieldBuilder.cs: implemented.
  1081. * ILGenerator.cs: implemented some opcode handling.
  1082. * Label.cs: add constructor.
  1083. * LocalBuilder.cs: implemented.
  1084. * MethodBuilder.cs: don't use internalcalls, more implemented stuff.
  1085. * ModuleBuilder.cs: don't use internalcalls, more meat here, too.
  1086. * ParameterBuilder.cs: implemented.
  1087. * PropertyBuilder.cs: implemented.
  1088. * TypeBuilder.cs: don't use internalcalls, more stuff working.
  1089. Tue Sep 25 16:48:50 CEST 2001 Paolo Molaro <[email protected]>
  1090. * ConstructorInfo.cs, MemberFilter.cs, Module.cs: added.
  1091. Fri Sep 14 16:12:08 CEST 2001 Paolo Molaro <[email protected]>
  1092. * MethodBase.cs, MethodInfo.cs: added.
  1093. Thu Sep 13 18:05:16 CEST 2001 Paolo Molaro <[email protected]>
  1094. * Assembly.cs: added stub code.
  1095. 2001-07-18 Michael Lambert <[email protected]>
  1096. * BindingFlags.cs: Add.