ChangeLog 67 KB

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