ChangeLog 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251
  1. 2006-12-20 Chris Toshok <[email protected]>
  2. * ComplexBindingPropertiesAttribute.cs: add Default field.
  3. 2006-12-20 Chris Toshok <[email protected]>
  4. * ComplexBindingPropertiesAttribute.cs: new 2.0 attribute.
  5. 2006-12-19 Chris Toshok <[email protected]>
  6. * PropertyDescriptor.cs: stop crashing on a missing type
  7. converter.
  8. 2006-12-06 Chris Toshok <[email protected]>
  9. * ReflectionPropertyDescriptor.cs: turns out if "ShouldSerialize*"
  10. is present and returns false, "CanReset*" also returns false.
  11. 2006-12-06 Chris Toshok <[email protected]>
  12. * ReflectionPropertyDescriptor.cs: ShouldSerializeValue should
  13. return false if there's no ShouldSerialize method.
  14. 2006-12-06 Chris Toshok <[email protected]>
  15. * ReflectionPropertyDescriptor.cs: fixes for CanResetValue and
  16. ShouldSerializeValue - we need to find both public and nonpublic
  17. methods.
  18. 2006-12-01 Duncan Mak <[email protected]>
  19. * AddingNewEventArgs.cs:
  20. * AddingNewEventHandler.cs: Added.
  21. * ListChangedEventArgs.cs (.ctor): Uncomment the bit about
  22. property descriptor now that there's an implementation of it.
  23. (PropertyDescriptor): New 2.0 property.
  24. 2006-11-29 Ivan N. Zlatev <[email protected]>
  25. * MemberDescriptor.cs, ReflectionPropertyDescriptor.cs: 1) The
  26. ReflectionPropretyDescriptor must be able to operate with non
  27. public properties.
  28. 2) The current implementation ignores the fact that the component
  29. can be in design mode. In design mode some of the properties (the
  30. design-time ones) are supposed to be redirected to the
  31. designer. The component which should be used to access the
  32. property is retrieved by using MemberDescriptor.GetInvokee
  33. (implemented in the patch). Updated the
  34. ReflectorPropertyDescriptor to use GetInvokee to decide which
  35. component should it use.
  36. Reviewed by: Miguel de Icaza
  37. 2006-11-28 Miguel de Icaza <[email protected]>
  38. * TypeDescriptor.cs: This implementation is really from Gonzalo,
  39. he dictated to me :-)
  40. 2006-11-20 Nagappan A <[email protected]>
  41. * ISupportInitializeNotification.cs: New Interface file to support
  42. NET 2.0 features.
  43. 2006-11-09 Chris Toshok <[email protected]>
  44. * ReflectionPropertyDescriptor.cs: IsReadOnly needs to take into
  45. account the ReadOnlyAttribute.
  46. 2006-11-08 Gert Driesen <[email protected]>
  47. * ArrayConverter.cs: Modifed ConvertTo for Array => String to match
  48. MS. In GetProperties, throw NRE to match MS.
  49. 2006-11-08 Chris Toshok <[email protected]>
  50. * ArrayConverter.cs: implement GetProperties correctly, by
  51. creating ArrayPropertyDescriptor objects for each array element.
  52. 2006-10-05 Andrew Skiba <[email protected]>
  53. * EventHandlerList.cs: Implement event handler list according to MS
  54. definition. No hash table, just a simple list with good performance
  55. for a small number of events (<20) and worse performance when number
  56. of events is bigger (patch by [email protected]).
  57. 2006-10-29 Alexander Olk <[email protected]>
  58. * ComponentResourceManager.cs: Make ApplyResources work.
  59. Instead of iterating through the resource set table we now
  60. read the property infos of an object and check if there is
  61. an item in the resource set for each property info. This makes
  62. it finally possible to create language dependent resources
  63. that do not have to include everything from a parent culture
  64. resource (mostly invariant culture).
  65. Throw an ArgumentNullException if value or objectName is null.
  66. 2006-10-29 Alexander Olk <[email protected]>
  67. * ComponentResourceManager.cs: Don't close the resource set in
  68. ApplyResources, it is possible to call ApplyResources multiple
  69. times. Closing the resource set means that it gets disposed.
  70. Fixes bug #79182.
  71. 2006-09-28 Andrew Skiba <[email protected]>
  72. * Component.cs,PropertyDescriptorCollection.cs,MarshalByValueComponent.cs:
  73. TARGET_JVM
  74. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  75. * Container.cs: 'unsite' the component when removing it. Fixes
  76. bug #79255. Patch by Ivan N. Zlatev.
  77. 2006-09-11 Gonzalo Paniagua Javier <[email protected]>
  78. * TypeDescriptor.cs: don't ignore toplevel attributes when they are
  79. overriden.
  80. Patch by Ivan N. Zlatev that fixes bug #79256.
  81. 2006-08-20 Gert Driesen <[email protected]>
  82. * InvalidEnumArgumentException.cs: Beautify error message.
  83. 2006-08-14 Raja R Harinath <[email protected]>
  84. * IRaiseItemChangedEvents.cs: Add. Mentioned in #79012.
  85. 2006-07-31 Sebastien Pouliot <[email protected]>
  86. * InvalidEnumArgumentException.cs: Updated to 2.0.
  87. * LicenseException.cs: Updated to 2.0. Add a demand for
  88. SerializationFormatter on GetObjectData method.
  89. * TypeDescriptor.cs: Add linkdemand for ReflectionPermission on
  90. CreateEvent and CreateProperties methods. Add linkdemand for
  91. unrestricted on ComNativeDescriptorHandler get/set.
  92. * WarningException.cs: Updated to 2.0. Add a demand for
  93. SerializationFormatter on GetObjectData method.
  94. * Win32Exception.cs: Add a demand for SerializationFormatter on
  95. GetObjectData method.
  96. 2006-07-14 Peter Dennis Bartok <[email protected]>
  97. * MaskedTextResultHint.cs: Added
  98. 2006-05-31 Gert Driesen <[email protected]>
  99. * TypeConverter.cs: Added explicit interface implementation for
  100. ICollection.CopyTo and IEnumerable.GetEnumerator. Fixes corcompare
  101. warnings.
  102. * Component.cs: Remove TypeConverter attribute. Fixes corcompare
  103. warning.
  104. * AttributeCollection.cs: Added explicit interface implemenation for
  105. IEnumerable.GetEnumerator, IList.RemoveAt and ICollection.Count.
  106. Fixes corcompare warnings.
  107. * PropertyDescriptorCollection.cs: Added explicit interface
  108. implemenation for ICollection.Count. Fixes corcompare warning.
  109. 2006-05-22 Atsushi Enomoto <[email protected]>
  110. * TypeDescriptor.cs : GetProperties() does not return indexers.
  111. 2006-05-11 Atsushi Enomoto <[email protected]>
  112. * ReflectionPropertyDescriptor.cs,
  113. DerivedPropertyDescriptor.cs : invoke OnValueChanged() when
  114. the value was successfully changed. It is needed to have
  115. MWF PropertyGrid change properties successfully.
  116. 2006-05-08 Atsushi Enomoto <[email protected]>
  117. * AsyncOperation.cs : SynchronizationContext.OperationStarted()
  118. should not be called more than once. So move it from Post() to
  119. .ctor(). Thanks again to cl.
  120. 2006-05-08 Atsushi Enomoto <[email protected]>
  121. * AsyncOperation.cs : call OperationStared() at Post(). Call
  122. OperationCompleted() at the finalizer. Thanks to cl.
  123. 2006-05-08 Atsushi Enomoto <[email protected]>
  124. * SettingsBindableAttribute.cs : new file. Bug #78333 is fixed.
  125. 2006-04-27 Miguel de Icaza <[email protected]>
  126. * Component.cs: The converter for the Component is
  127. ComponentConverter, which makes the GetPropertiesSupported return
  128. true. So JChamber's patch should work now.
  129. 2006-04-26 Miguel de Icaza <[email protected]>
  130. * TypeDescriptor.cs (Info.GetProperties, TypeInfo.GetProperties):
  131. Use the more specific GetProperties call so we do not return
  132. static properties, should fix that part of the PropertyGrid bug
  133. #78192.
  134. Code formatting police hit again.
  135. * ReflectionPropertyDescriptor.cs (CanResetvalue): Do not
  136. dereference a null value, avoids crash in property grid.
  137. Code formatting police.
  138. 2006-04-25 Miguel de Icaza <[email protected]>
  139. * TypeConverter.cs (ConvertFrom): Do not crash if we are passed a
  140. null value.
  141. 2006-04-25 Atsushi Enomoto <[email protected]>
  142. * BaseNumberConverter.cs : (ConvertTo) regardless of InnerType,
  143. it converts the argument value to InnerType using supplied format.
  144. (It might be not limited to NET_2_0 but it's too cosmetic to dig
  145. into the problem. At least this is for run-test-ondotnet fixes.)
  146. 2006-04-17 Atsushi Enomoto <[email protected]>
  147. * BackgroundWorker.cs, RunWorkerCompletedEventArgs.cs :
  148. cosmetic attribute fixes.
  149. 2006-04-17 Atsushi Enomoto <[email protected]>
  150. * AsyncOperation.cs,
  151. AsyncOperationManager.cs
  152. BackgroundWorker.cs
  153. DoWorkEventArgs.cs
  154. DoWorkEventHandler.cs
  155. RunWorkerCompletedEventArgs.cs
  156. RunWorkerCompletedEventHandler.cs :
  157. Initial implementation of AsyncOperation and BackgroundWorker.
  158. (However I think it does not work as expected - it depends on
  159. SynchronizationContext.Post() and I doubt it works fine - the
  160. callback should run synchronously while it does not look so.)
  161. 2006-03-30 Atsushi Enomoto <[email protected]>
  162. * AsyncCompletedEventArgs.cs : constructor did not initialize fields.
  163. 2006-03-28 Atsushi Enomoto <[email protected]>
  164. * ProgressChangedEventHandler.cs ProgressChangedEventArgs.cs :
  165. added 2.0 types.
  166. 2006-02-26 Pedro Martinez Julia <[email protected]>
  167. * HandledEventHandler.cs: Resolving a "Replaced" SVN flag.
  168. 2006-02-23 Andrew Skiba <[email protected]>
  169. * TypeDescriptor.cs: performance improvement for GetAttributes,
  170. GetProperties and GetEvents. See the standalone test for the use case.
  171. 2006-01-31 Gonzalo Paniagua Javier <[email protected]>
  172. * Container.cs: patch by Brian Crowell that fixes GetService().
  173. 2006-01-22 Chris Toshok <[email protected]>
  174. * DesignerSerializationVisibilityAttribute.cs: in the 2.0 case,
  175. this attribute is valid on fields and events as well.
  176. 2005-11-19 Zoltan Varga <[email protected]>
  177. * TypeDescriptor.cs: Small changes to make this more compliant with
  178. MSDN docs and actual MS behaviour.
  179. 2005-11-07 Pedro Martinez Julia <[email protected]>
  180. * IBindingListView.cs Initial implementation
  181. * HandledEventArgs.cs Initial implementation
  182. * HandledEventHandler.cs Initial implementation
  183. * ListSortDescription.cs: Initial implementation
  184. * ListSortDescriptionCollection.cs: Initial implementation
  185. 2005-10-31 Dick Porter <[email protected]>
  186. * Win32Exception.cs: Add another error code.
  187. 2005-09-20 Chris Toshok <[email protected]>
  188. * INotifyPropertyChanged.cs: new interface.
  189. 2005-09-19 Gert Driesen <[email protected]>
  190. * TypeDescriptor.cs: Remove usage of removed internal
  191. PropertyDescriptorCollection ctor. Return read-only collection.
  192. * PropertyDescriptorCollection.cs: Removed internal ctor taking
  193. ArrayList. Add ctor for making read-only collection. Added
  194. read-only checks. Implemented IsReadOnly and IsFixedSize. Empty now
  195. returns read-only collection to match MS.NET.
  196. 2005-09-12 Gert Driesen <[email protected]>
  197. * TypeConverter.cs: Only return browsable properties in GetProperties.
  198. 2005-08-28 Gert Driesen <[email protected]>
  199. * DateTimeConverter.cs: ConvertTo must return zero-length string
  200. for DateTime.MinValue. Use CultureInfo.GetFormat to obtain
  201. DateTimeFormatInfo to match MS.NET.
  202. 2005-08-27 Gonzalo Paniagua Javier <[email protected]>
  203. * TypeDescriptor.cs: remove double lock in DefaultConverter.
  204. 2005-08-26 Gert Driesen <[email protected]>
  205. * BaseNumberConverter.cs: Use CultureInfo.GetFormat to obtain
  206. NumberFormatInfo to match MS.NET. Added ConvertToString abstract
  207. method for conversion to string.
  208. * ByteConverter.cs: Implemented ConvertToString.
  209. * DecimalConverter.cs: Implemented ConvertToString.
  210. * DoubleConverter.cs: Implemented ConvertToString.
  211. * Int16Converter.cs: Implemented ConvertToString.
  212. * Int32Converter.cs: Implemented ConvertToString.
  213. * Int64Converter.cs: Implemented ConvertToString.
  214. * SByteConverter.cs: Implemented ConvertToString.
  215. * SingleConverter.cs: Implemented ConvertToString.
  216. * UInt16Converter.cs: Implemented ConvertToString.
  217. * UInt32Converter.cs: Implemented ConvertToString.
  218. * UInt64Converter.cs: Implemented ConvertToString.
  219. 2005-08-19 Gert Driesen <[email protected]>
  220. * SingleConverter.cs: Implement conversion from string to match MS.NET.
  221. Set eol-style to native.
  222. * TypeConverter.cs: Always support conversion from InstanceDescriptor.
  223. Set eol-style to native.
  224. * UInt16Converter.cs: Implement conversion from string to match MS.NET.
  225. Added support for converting string containing hex prefix. Set
  226. eol-style to native.
  227. * SByteConverter.cs: Implement conversion from string to match MS.NET.
  228. Added support for converting string containing hex prefix. Set
  229. eol-style to native.
  230. * Int16Converter.cs: Implement conversion from string to match MS.NET.
  231. Added support for converting string containing hex prefix. Set
  232. eol-style to native.
  233. * UInt64Converter.cs: Implement conversion from string to match MS.NET.
  234. Added support for converting string containing hex prefix. Set
  235. eol-style to native.
  236. * DecimalConverter.cs: Implement conversion from string to match MS.NET.
  237. Set eol-style to native.
  238. * Int64Converter.cs: Implement conversion from string to match MS.NET.
  239. Added support for converting string containing hex prefix. Set
  240. eol-style to native.
  241. * UInt32Converter.cs: Implement conversion from string to match MS.NET.
  242. Added support for converting string containing hex prefix. Set
  243. eol-style to native.
  244. * Int32Converter.cs: Implement conversion from string to match MS.NET.
  245. Added support for converting string containing hex prefix. Set
  246. eol-style to native.
  247. * DoubleConverter.cs: Implement conversion from string to match MS.NET.
  248. Set eol-style to native.
  249. * BaseNumberConverter.cs: Support conversion from string containing
  250. hex prefixes. Set eol-style to native.
  251. * ByteConverter.cs: Implement conversion from string to match MS.NET.
  252. Added support for converting string containing hex prefix. Set
  253. eol-style to native.
  254. 2005-08-18 Gert Driesen <[email protected]>
  255. * EditorBrowsableState.cs: Changed line ending from CRLF to LF to
  256. match other sources. Set eol-style to native.
  257. * ExtenderProvidedPropertyAttribute.cs: Changed line ending from CRLF
  258. to LF to match other sources. Set eol-style to native.
  259. * RefreshEventHandler.cs: Changed line ending from CRLF to LF to match
  260. other sources. Set eol-style to native.
  261. * TypeDescriptor.cs: Changed line ending from CRLF to LF to match
  262. other sources. Set eol-style to native.
  263. 2005-08-16 Gert Driesen <[email protected]>
  264. * BaseNumberConverter.cs: In ConvertFrom, wrap all exceptions that
  265. are thrown while converting from string in an Exception.
  266. 2005-08-16 Gert Driesen <[email protected]>
  267. * ToolboxItemAttribute.cs: Fixed GetHashCode to correspond with MS.NET.
  268. Fixed initialization order. Throw ArgumentException if item type
  269. cannot be loaded.
  270. 2005-08-09 Michael Hutchinson <[email protected]>
  271. * ToolboxItemAttribute.cs: Fixed typo
  272. 2005-08-09 Gert Driesen <[email protected]>
  273. * IComponent.cs: Fixed Designer attribute to match MS.NET.
  274. * DesignerAttribute.cs: DesignerBaseTypeName defaults to fullname of
  275. IDesigner to match MS.NET.
  276. 2005-08-07 Michael Hutchinson <[email protected]>
  277. Patch from Michael Hutchinson to make the aspnet editor work.
  278. * ReflectionPropertyDescriptor.cs: Create transactions and raise
  279. component change events for all IComponents, not just base
  280. implementation 'Component' derivatives.
  281. * MemberDescriptor.cs: Make members 'Browsable' by default, as per
  282. MS spec.
  283. * PropertyDescriptor.cs: Changed default
  284. DesignerSerializationVisibility value to Visible rather than
  285. Hidden, as per MS spec.
  286. 2005-07-21 Gonzalo Paniagua Javier <[email protected]>
  287. * TypeDescriptor.cs: (GetProperties) throw exception if 'component' is
  288. null.
  289. 2005-06-30 Sebastien Pouliot <[email protected]>
  290. * Win32Exception.cs: Added some declarative security (permission from
  291. corlib) as an initial test (outside corlib). Added new constructors
  292. for NET_2_0.
  293. 2005-06-27 LLuis Sanchez Gual <[email protected]>
  294. * CultureInfoConverter.cs: Correctly look for verbose name of
  295. the culture being converted.
  296. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  297. * ToolboxItemAttribute.cs: fix the fix that was fixed before.
  298. 2005-06-08 Zoltan Varga <[email protected]>
  299. * ToolboxItemAttribute.cs: Revert last change as it breaks the build.
  300. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  301. * ToolboxItemAttribute.cs: fix default type name.
  302. 2005-06-04 Gert Driesen <[email protected]>
  303. * Win32Exception.cs: improve error message for error 10047.
  304. 2005-06-04 Gert Driesen <[email protected]>
  305. * TypeDescriptor.cs: in .NET 2.0, GetComponentName returns null if
  306. object is not an IComponent or has no Site.
  307. In .NET 2.0, GetDefaultEvent does not fallback to first defined event
  308. if the default event is filtered out. GetDefaultProperty did not
  309. take filtering into account. Fixes bug #75152.
  310. 2005-05-31 Gonzalo Paniagua Javier <[email protected]>
  311. * Win32Exception.cs: add 10049 WSAEADDRNOTAVAIL. Fixes bug #75106.
  312. 2005-05-15 Andreas Nahr <[email protected]>
  313. * IComponent.cs: Fix attributes
  314. 2005-04-28 Gonzalo Paniagua Javier <[email protected]>
  315. * TypeDescriptor.cs: implemented GetEditor. Patch by Jonathan Chambers.
  316. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  317. * DefaultValueAttribute.cs: fixed the .ctor that takes a type and a
  318. string. Previous implementation caused *lots* of exceptions being thrown
  319. when processing WebControl types.
  320. 2005-04-22 LLuis Sanchez Gual <[email protected]>
  321. * AttributeCollection.cs: When checking if the list contains an
  322. attribute, always return true if that attribute is the default
  323. attribute for that kind of attributes.
  324. 2005-04-13 LLuis Sanchez Gual <[email protected]>
  325. * TypeDescriptor.cs: When creating a converter, use a constructor that
  326. takes a Type parameter if exists.
  327. * PropertyDescriptor.cs: In the Converter property, check for a
  328. TypeConverterAttribute in the property.
  329. 2005-03-02 Jackson Harper <[email protected]>
  330. * ReflectionEventDescriptor.cs: Bind handlers to the actual event so that
  331. the delegates get invoked when the methods are.
  332. 2005-03-02 Jackson Harper <[email protected]>
  333. * EventDescriptorCollection.cs: Handle null in the constructor properly.
  334. 2005-02-12 Geoff Norton <[email protected]>
  335. * CharConverter.cs: Implement the ability to convert from "".
  336. 2005-02-10 Geoff Norton <[email protected]>
  337. * CultureInfoConverter.cs: Implement converting from the
  338. string "(default)" that MS will put in .resx files.
  339. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  340. * BindableAttribute.cs: Implemented 2.0 api.
  341. 2005-02-05 Gonzalo Paniagua Javier <[email protected]>
  342. * TypeDescriptor.cs: fixed bug #71601. GetConverter should handle
  343. TypeConverter derived classes that take a Type argument.
  344. 2005-01-27 LLuis Sanchez Gual <[email protected]>
  345. * DateTimeConverter.cs, CultureInfoConverter.cs, DecimalConverter.cs,
  346. TimeSpanConverter.cs, GuidConverter.cs, EnumConverter.cs:
  347. Implemented support for InstanceDescriptor.
  348. 2005-01-25 LLuis Sanchez Gual <[email protected]>
  349. * Win32Exception.cs: Set the correct name for the serialized
  350. NativeErrorCode. This fixes bug #71572. Fix by Aleksandar Dezelin.
  351. 2005-01-24 Joerg Rosenkranz <[email protected]>
  352. * TypeDescriptor.cs: Changed handling of interfaces and objects in
  353. GetConverter to reflect the behaviour of .NET. This fixes bug #71444.
  354. 2005-01-19 Jonathan Pryor <[email protected]>
  355. * TypeDescriptor.cs: Fix Info.GetDefaultEvent() so that it filters events
  356. properly. This matches .NET 1.1 and fixes a test case.
  357. 2005-01-19 Jonathan Pryor <[email protected]>
  358. * TypeDescriptor.cs: Fix GetComponentName() so that it returns the type
  359. name if no Site is present. This matches .NET 1.1 and fixes a test case.
  360. 2005-01-12 Gonzalo Paniagua Javier <[email protected]>
  361. * BaseNumberConverter.cs: when the culture we get is null, set it to the
  362. default. Fixes bug #67033. Thanks to Sander Rijken.
  363. 2005-01-10 LLuis Sanchez Gual <[email protected]>
  364. * BindingDirection.cs: New enum.
  365. 2004-12-09 Dick Porter <[email protected]>
  366. * Win32Exception.cs: Add another socket error, fix the message of
  367. some old ones.
  368. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  369. * AttributeCollection.cs: support attributes inherited from the one
  370. we want. Fixes bug #67088. Thanks to Sander Rijken.
  371. 2004-08-14 Jackson Harper <[email protected]>
  372. * Container.cs: Release all when we are supposed to release all.
  373. 2004-07-14 Atsushi Enomoto <[email protected]>
  374. * Added IChangeTracking.cs and IRevertibleChangeTracking.cs.
  375. 2004-07-09 LLuis Sanchez Gual <[email protected]>
  376. * AsyncCompletedEventArgs.cs: Implemented.
  377. * AsyncCompletedEventHandler.cs: Implemented.
  378. 2004-06-12 Gonzalo Paniagua Javier <[email protected]>
  379. * TypeDescriptor.cs: when a component in componentTable is Disposed,
  380. remove it from the table.
  381. Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <[email protected]>
  382. * LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
  383. DesignOnlyAttribute.cs: fix targets for attributes.
  384. 2004-05-05 Lluis Sanchez Gual <[email protected]>
  385. * BooleanConverter.cs: Improved ConverFrom method.
  386. 2004-04-28 Lluis Sanchez Gual <[email protected]>
  387. * TypeDescriptor.cs: Do not return attributes that have the same TypeID.
  388. This fixes bug #57655.
  389. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  390. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  391. all the attributes, not just DesignerAttribute instances. nGallery
  392. complained.
  393. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  394. * BooleanConverter.cs: GetStandardValues must return an array of
  395. booleans, not an array of strings.
  396. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  397. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  398. through GetPropertyInfo(). Take into account that a component may not
  399. be sited or not have some services.
  400. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  401. property. Other minor fixes.
  402. 2004-04-16 Joerg Rosenkranz <[email protected]>
  403. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  404. This fixes #57137.
  405. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  406. * AttributeCollection.cs: Added new internal constructor.
  407. * DesignerAttribute.cs: Fixed property TypeId.
  408. * EventDescriptorCollection.cs: Added internal constructor. Added new
  409. method Filter that removes events that do not have the specified
  410. attributes.
  411. * MemberDescriptor.cs: Minor fixes.
  412. * PropertyDescriptor.cs: Implemented some missing methods.
  413. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  414. Sort methods.
  415. * ReferenceConverter.cs: Removed some TODOs.
  416. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  417. * TypeDescriptor.cs: Implemented most of missing methods.
  418. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  419. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  420. Removed unneded TODOs.
  421. * ComponentResourceManager.cs: Implemented ApplyResources.
  422. * EventDescriptorCollection.cs: Implemented several missing methods.
  423. * LicFileLicenseProvider.cs: Implemented.
  424. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  425. the creation of the Attribute list.
  426. * TypeConverter.cs: Use null as default value for attribute array parameter.
  427. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  428. * Win32Exception.cs: added 10024 (WSAEMFILE).
  429. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  430. * AttributeCollection.cs: Don't try to create a default attribute if the
  431. attribute type does not have a default constructor. Fix by Jon Wagner.
  432. This fixes #53898.
  433. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  434. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  435. message as ERROR_FILE_NOT_FOUND.
  436. 2004-03-17 Ivan Hamilton <[email protected]>
  437. * LicenseManager.cs: Completed TODO.
  438. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  439. * Win32Exception.cs: use a switch instead of creating a hashtable when
  440. mapping from an error code to a message.
  441. 2003-11-22 Miguel de Icaza <[email protected]>
  442. * PropertyDescriptorCollection.cs (Insert): Another one.
  443. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  444. 2003-11-13 Andreas Nahr <[email protected]>
  445. * IComponent.cs: Added missing attribute
  446. 2003-11-12 Andreas Nahr <[email protected]>
  447. * ComponentResourceManager.cs: Added and partially implemented
  448. 2003-09-13 Duncan Mak <[email protected]>
  449. Patch from Jrg Rosenkranz <[email protected]>, this fixes the
  450. bugs described in bug #48351.
  451. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  452. multiple values. This is done in Enum.Parse already.
  453. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  454. types because EnumConverter does not have a default
  455. constructor. Fixed by changing the special handling for
  456. enumeration types.
  457. 2003-08-31 Jerome Laban <[email protected]>
  458. * Container.cs: A site without name cannot be duplicate.
  459. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  460. * Win32Exception.cs: added message for 10054.
  461. 2003-07-17 Andreas Nahr <[email protected]>
  462. * CategoryAttribute.cs: Added localization support
  463. 2003-07-17 Andreas Nahr <[email protected]>
  464. * IComponent.cs:
  465. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  466. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  467. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  468. have a TypeConverter. Fixes bug #46397.
  469. 2003-07-14 Jerome Laban <[email protected]>
  470. * IComponent.cs: Removed duplicate Designer attribute.
  471. 2003-07-13 Andreas Nahr <[email protected]>
  472. * Component.cs: Implementation added
  473. * Container.cs: Implementation added
  474. * MarshalByValueComponent.cs: Implementation added
  475. * ReferenceConverter.cs: Small addition for future implementation
  476. 2003-07-10 Andreas Nahr <[email protected]>
  477. * TypeConverter.cs: Implemented missing methods
  478. * TypeDescriptor.cs: Redirections added
  479. 2003-07-05 Andreas Nahr <[email protected]>
  480. * EnumConverter.cs: Fixed signature
  481. * EventDescriptorCollection.cs: Fixed signature
  482. * InheritanceLevel.cs: Fixed enum values; little restyling
  483. * License.cs: Removed undefined member
  484. * LicenseManager.cs: Fixed signature, little implementation added
  485. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  486. * WarningException.cs: Removed wrong attribute
  487. * Win32Exception.cs: Added missing attribute
  488. 2003-07-02 Andreas Nahr <[email protected]>
  489. * AttributeCollection.cs: Fixed public members
  490. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  491. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  492. * CategoryAttribute.cs: Changed public fields to properties
  493. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  494. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  495. * PropertyDescriptorCollection.cs: Fixed public members
  496. * ReferenceConverter.cs: Implementation added
  497. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  498. * TypeDescriptor.cs: Implementations added
  499. 2003-07-02 Andreas Nahr <[email protected]>
  500. * ISite.cs: Fixed attributes, fixed header
  501. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  502. * WarningException.cs: Fixed attributes, formatting corrections
  503. * AttributeCollection.cs: Fixed attributes
  504. * DesignerSerializationVisibility.cs: Fixed attributes
  505. * TypeConverter.cs: Fixed attributes
  506. * MarshalByValueComponent.cs:
  507. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  508. * DescriptionAttribute.cs:
  509. * DesignerCategoryAttribute.cs:
  510. * DoubleConverter.cs:
  511. * EditorBrowsableAttribute.cs:
  512. * EventDescriptorCollection.cs:
  513. * PropertyChangedEventHandler.cs:
  514. * RefreshEventArgs.cs:
  515. * StringConverter.cs:
  516. * DefaultValueAttribute.cs: Reformatted following style guidelines
  517. * License.cs: Removed unused MonoTODOs
  518. * LicenseContext.cs: Implemented
  519. * LicenseException.cs: Implemented
  520. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  521. * LicenseUsageMode.cs: Fixed enum
  522. * RefreshProperties.cs: Fixed enum
  523. * LicFileLicenseProvider.cs: Implementation added
  524. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  525. * ExpandableObjectConverter.cs: Implemented
  526. * ComponentConverter.cs: Implemented
  527. 2003-06-23 Andreas Nahr <[email protected]>
  528. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  529. better Hashcode generation
  530. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  531. better Hashcode generation
  532. * LicenseContext.cs: Added and implemented missing property
  533. * ListBindableAttribute.cs: Simplified implementation, removed
  534. unneccessary data.
  535. * ReadOnlyAttribute.cs: Better Hashcode generation
  536. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  537. Equals check.
  538. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  539. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  540. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  541. * MarshalByValueComponent.cs:
  542. * IContainer.cs:
  543. * IComponent.cs: Added missing attribute(s)
  544. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  545. * AmbientValueAttribute.cs:
  546. * ArrayConverter.cs:
  547. * BaseNumberConverter.cs:
  548. * BindableAttribute.cs:
  549. * BooleanConverter.cs:
  550. * BrowsableAttribute.cs:
  551. * ByteConverter.cs:
  552. * CategoryAttribute.cs:
  553. * CharConverter.cs:
  554. * CollectionConverter.cs:
  555. * Component.cs:
  556. * ComponentCollection.cs:
  557. * ComponentEditor.cs:
  558. * Container.cs:
  559. * CultureInfoConverter.cs:
  560. * DateTimeConverter.cs:
  561. * DecimalConverter.cs:
  562. * DefaultEventAttribute.cs:
  563. * DefaultPropertyAttribute.cs:
  564. * DefaultValueAttribute.cs:
  565. * DescriptionAttribute.cs:
  566. * DesignOnlyAttribute.cs:
  567. * DesignTimeVisibleAttribute.cs:
  568. * DesignerCategoryAttribute.cs:
  569. * DesignerSerializationVisibilityAttribute.cs:
  570. * DoubleConverter.cs:
  571. * EditorBrowsableAttribute.cs:
  572. * EventDescriptor.cs:
  573. * EventDescriptorCollection.cs:
  574. * ExpandableObjectConverter.cs:
  575. * ExtenderProvidedPropertyAttribute.cs: New file.
  576. * GuidConverter.cs:
  577. * IComNativeDescriptorHandler.cs:
  578. * IComponent.cs:
  579. * ImmutableObjectAttribute.cs:
  580. * InheritanceAttribute.cs:
  581. * InheritanceLevel.cs:
  582. * InstallerTypeAttribute.cs:
  583. * Int16Converter.cs:
  584. * Int32Converter.cs:
  585. * Int64Converter.cs:
  586. * InvalidEnumArgumentException.cs:
  587. * LicenseProviderAttribute.cs:
  588. * LocalizableAttribute.cs:
  589. * MarshalByValueComponent.cs:
  590. * MemberDescriptor.cs:
  591. * MergablePropertyAttribute.cs:
  592. * NotifyParentPropertyAttribute.cs:
  593. * ParenthesizePropertyNameAttribute.cs:
  594. * PropertyDescriptor.cs:
  595. * PropertyDescriptorCollection.cs:
  596. * PropertyTabAttribute.cs:
  597. * ProvidePropertyAttribute.cs:
  598. * RecommendedAsConfigurableAttribute.cs:
  599. * RefreshPropertiesAttribute.cs:
  600. * SByteConverter.cs:
  601. * SingleConverter.cs:
  602. * TimeSpanConverter.cs:
  603. * ToolboxItemFilterAttribute.cs:
  604. * TypeConverter.cs:
  605. * TypeConverterAttribute.cs:
  606. * TypeDescriptor.cs:
  607. * TypeListConverter.cs:
  608. * UInt16Converter.cs:
  609. * UInt32Converter.cs:
  610. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  611. ([email protected]).
  612. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  613. * IExtenderProvider.cs: mono-stylized.
  614. * IComNativeDescriptorHandler.cs:
  615. * SyntaxCheck.cs: new files from Andreas Nahr.
  616. 2003-03-20 Dick Porter <[email protected]>
  617. * Win32Exception.cs: Made the fallback error more useful by
  618. reporting the error number
  619. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  620. * MarshalByValueComponent.cs: removed a monotodo.
  621. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  622. * Win32Exception.cs: added error code 2.
  623. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  624. * Win32Exception.cs: implemented GetObjectData ().
  625. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  626. * RunInstallerAttribute.cs: New file.
  627. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  628. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  629. 2003-02-05 Alan Tam <[email protected]>
  630. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  631. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  632. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  633. to bug #37380, mcs complained about this when compiling System.Data.
  634. 2003-01-08 Dick Porter <[email protected]>
  635. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  636. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  637. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  638. implements it. It's done for GetProperties and should be done for the
  639. rest of methods present in ICustomTypeDescriptor.
  640. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  641. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  642. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  643. * DefaultValueAttribute.cs: the attribute applies to All.
  644. 2002-11-19 Duncan Mak <[email protected]>
  645. * DesignerAttribute.cs:
  646. * EditorAttribute: Style changes. Gonzalo committed the build
  647. fixes before I did.
  648. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  649. * DesignerAttribute.cs:
  650. * EditorAttribute.cs: fixed the build.
  651. 2002-11-19 Alejandro Snchez Acosta <[email protected]>
  652. * EditorAttribute: implemented.
  653. * DesignerAttribute: implemented.
  654. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  655. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  656. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  657. * ListBindableAttribute.cs: implemented.
  658. 2002-11-02 Duncan Mak <[email protected]>
  659. * InvalidEnumArgumentException.cs: Added.
  660. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  661. * EventHandlerList.cs: fixed bug #29535.
  662. 2002-10-03 Dick Porter <[email protected]>
  663. * Win32Exception.cs: Added ETIMEDOUT
  664. 2002-09-30 Dick Porter <[email protected]>
  665. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  666. 2002-09-17 Asier Llano Palacios <[email protected]>
  667. * CancelEventArgs.cs
  668. * WarningException.cs
  669. * CancelEventHandler.cs
  670. * PropertyChangedEventHandler.cs
  671. * IExtenderProvider.cs: Implemented
  672. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  673. * Component.cs:
  674. * ComponentCollection.cs:
  675. * Container.cs:
  676. * MarshalByValueComponent.cs: IDisposable fixes.
  677. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  678. * BindableSupport.cs:
  679. * Component.cs:
  680. * EventDescriptorCollection.cs:
  681. * ITypeDescriptorContext.cs:
  682. * TypeConverter.cs:
  683. * TypeDescriptor.cs: class status based fixes.
  684. * StringConverter.cs: implemented a couple of methods.
  685. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  686. * EnumConverter.cs: new file.
  687. * TypeConverter.cs: implemented a few simple methods.
  688. * TypeDescriptor.cs:
  689. (GetConverter): initial support for converters of well-known types.
  690. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  691. * DerivedPropertyDescriptor.cs: New file. Internal class.
  692. * PropertyDescriptorCollection.cs: almost fully implemented.
  693. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  694. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  695. * Component.cs: don't die if Disposed is null.
  696. 2002-07-22 Tim Coleman <[email protected]>
  697. * RecommendedAsConfigurableAttribute.cs: new file added
  698. for System.Web.Services build
  699. 2002-07-22 Tim Coleman <[email protected]>
  700. * ExpandableObjectConverter.cs: Fix error with constructor
  701. 2002-07-22 Tim Coleman <[email protected]>
  702. * TypeConverter.cs: Fixed bad stubb function
  703. GetConvertToException ()
  704. 2002-07-22 Tim Coleman <[email protected]>
  705. * ComponentCollection.cs: Added reference to
  706. ReadOnlyCollectionBase to make sure
  707. that we inherit the appropriate methods.
  708. Not sure why the Dispose() method is
  709. required, but left for now.
  710. 2002-07-22 Tim Coleman <[email protected]>
  711. * TypeConverter.cs: Added new stubbs
  712. * BindableAttribute.cs: Added
  713. * BindableSupport.cs: Added
  714. * NotifyParentPropertyAttribute.cs: Added
  715. * ExpandableObjectConverter.cs: Added
  716. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  717. * MemberDescriptor.cs: implemented Attributes and Category.
  718. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  719. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  720. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  721. fixed value for Yes.
  722. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  723. * TypeConverter.cs: added SimplePropertyDescriptor class.
  724. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  725. * ToolboxItemAttribute.cs: New file.
  726. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  727. * DefaultEventAttribute.cs: new file.
  728. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  729. * AttributeCollection.cs: fixlet.
  730. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  731. * AttributeCollection.cs: finished implementation.
  732. * TypeDescriptor.cs: implemented GetAttributes (object).
  733. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  734. * AttributeCollection.cs: initialize member variables.
  735. * RefreshEventArgs.cs: implemented.
  736. * RefreshEventHandler.cs: New file.
  737. * TypeDescriptor.cs: fully stubbed out the remaining method.
  738. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  739. * DefaultPropertyAttribute.cs: New file.
  740. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  741. * TypeConverter.cs: flushed local changes.
  742. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  743. * StringConverter.cs: stubbed out.
  744. * TypeConverter.cs: stubbed the rest out and added some implementation.
  745. Five errors left when compiling System.Web in linux.
  746. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  747. * TypeConverterAttribute.cs: attribute used by
  748. TypeDescriptor.Getconverter ().
  749. * TypeDescriptor.cs: implemented GetConverter in the right way.
  750. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  751. * TypeConverter.cs:
  752. * ITypeDescriptorContext.cs:
  753. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  754. which uses ColorConverter.
  755. 2002-05-12 Daniel Morgan <[email protected]>
  756. * IComponent.cs
  757. * ISite.cs: added using System
  758. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  759. to // TODOs and added using System. The throwing of the exceptions prevented
  760. System.Data from running.
  761. 2002-05-10 Rodrigo Moya <[email protected]>
  762. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  763. not this[index], which issues an 'ambigous call' error on Linux.
  764. 2002-05-07 Rodrigo Moya <[email protected]>
  765. * EventDescriptor.cs: added missing constructors.
  766. * EventDescriptorCollection.cs: fixed interface methods implementation
  767. * IDataErrorInfo.cs:
  768. * IEditableObject.cs: new interfaces.
  769. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  770. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  771. it compile.
  772. 2002-05-03 Rodrigo Moya <[email protected]>
  773. * AttributeCollection.cs:
  774. * EventDescriptor.cs:
  775. * EventDescriptorCollection.cs:
  776. * ICustomTypeDescriptor.cs: new files.
  777. 2002-05-01 Duncan Mak <[email protected]>
  778. * ListChangedType.cs:
  779. * ListChangedEventHandler.cs:
  780. * ListChangedEventArgs.cs: Added to fix build.
  781. 2002-05-01 Miguel de Icaza <[email protected]>
  782. * PropertyDescriptorCollection.cs: Added the IList explicit
  783. implementation methods.
  784. lots of bug fixes to get the build to compile again.
  785. 2002-05-01 Duncan Mak <[email protected]>
  786. * ListSortDirection.cs: EnumChecked.
  787. 2002-05-01 Rodrigo Moya <[email protected]>
  788. * ListSortDirection.cs: new enumeration. Please, somebody run
  789. EnumCheck on it, as I don't have a windows machine.
  790. * PropertyDescriptorCollection.cs: new class.
  791. * ITypedList.cs:
  792. * IBindingList.cs: new interfaces.
  793. 2002-04-28 Duncan Mak <[email protected]>
  794. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  795. implementation. Please use EnumCheck!
  796. 2002-04-28 Rodrigo Moya <[email protected]>
  797. * CollectionChangeAction.cs: new enumeration.
  798. * CategoryAttribute.cs: moved the 'return' keyword to the
  799. end of the method, to avoid compilation errors on Linux for
  800. all CategoryAttribute properties.
  801. 2002-04-28 Rodrigo Moya <[email protected]>
  802. * IListSource.cs:
  803. * ISupportInitialize.cs:
  804. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  805. compilation.
  806. * PropertyChangedEventArgs.cs:
  807. * CollectionChangeEventHandler.cs:
  808. * CollectionChangeEventArgs.cs: implemented.
  809. 2002-04-28 Lawrence Pit <[email protected]>
  810. * Added error code 11001 to Win32Exception, used by Dns.c
  811. 2002-04-04 Dick Porter <[email protected]>
  812. * ISynchronizeInvoke.cs: Needed by Process
  813. 2002-01-23 Dick Porter <[email protected]>
  814. * Win32Exception.cs: implement, with support for looking up
  815. runtime errors.
  816. 2002-01-17 Miguel de Icaza <[email protected]>
  817. * Win32Exception.cs: Add.
  818. 2002-01-05 Ravi Pratap <[email protected]>
  819. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  820. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  821. 2001-10-27 Miguel de Icaza <[email protected]>
  822. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  823. * DesignerSerializationVisibility.cs: New enumeration.
  824. * LocalizableAttribute.cs: Implemented.
  825. * BrowsableAttribute.cs: Implemented.
  826. * DesignOnlyAttribute.cs: Implemented.
  827. * DescriptionAttribute.cs: Implement.
  828. * MemberDescriptor.cs: Implemented.
  829. * CategoryAttribute.cs: implemented.
  830. 2001-08-21 Nick Drochak <[email protected]>
  831. * Component.cs: Eliminated compile errors by removing redundant fields and
  832. using the ISite member instead. Also raised the Disposed event, but not
  833. sure if it's correct now. Look for FIXME in the comments.
  834. 2001-08-02 Miguel de Icaza <[email protected]>
  835. * EventHandlerList.cs: New file.
  836. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  837. ComponentCollection.cs, ISite.cs: New classes