ChangeLog 82 KB

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