ChangeLog 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  2. * AttributeCollection.cs: support attributes inherited from the one
  3. we want. Fixes bug #67088. Thanks to Sander Rijken.
  4. 2004-08-14 Jackson Harper <[email protected]>
  5. * Container.cs: Release all when we are supposed to release all.
  6. 2004-07-14 Atsushi Enomoto <[email protected]>
  7. * Added IChangeTracking.cs and IRevertibleChangeTracking.cs.
  8. 2004-07-09 LLuis Sanchez Gual <[email protected]>
  9. * AsyncCompletedEventArgs.cs: Implemented.
  10. * AsyncCompletedEventHandler.cs: Implemented.
  11. 2004-06-12 Gonzalo Paniagua Javier <[email protected]>
  12. * TypeDescriptor.cs: when a component in componentTable is Disposed,
  13. remove it from the table.
  14. Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <[email protected]>
  15. * LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
  16. DesignOnlyAttribute.cs: fix targets for attributes.
  17. 2004-05-05 Lluis Sanchez Gual <[email protected]>
  18. * BooleanConverter.cs: Improved ConverFrom method.
  19. 2004-04-28 Lluis Sanchez Gual <[email protected]>
  20. * TypeDescriptor.cs: Do not return attributes that have the same TypeID.
  21. This fixes bug #57655.
  22. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  23. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  24. all the attributes, not just DesignerAttribute instances. nGallery
  25. complained.
  26. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  27. * BooleanConverter.cs: GetStandardValues must return an array of
  28. booleans, not an array of strings.
  29. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  30. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  31. through GetPropertyInfo(). Take into account that a component may not
  32. be sited or not have some services.
  33. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  34. property. Other minor fixes.
  35. 2004-04-16 Joerg Rosenkranz <[email protected]>
  36. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  37. This fixes #57137.
  38. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  39. * AttributeCollection.cs: Added new internal constructor.
  40. * DesignerAttribute.cs: Fixed property TypeId.
  41. * EventDescriptorCollection.cs: Added internal constructor. Added new
  42. method Filter that removes events that do not have the specified
  43. attributes.
  44. * MemberDescriptor.cs: Minor fixes.
  45. * PropertyDescriptor.cs: Implemented some missing methods.
  46. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  47. Sort methods.
  48. * ReferenceConverter.cs: Removed some TODOs.
  49. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  50. * TypeDescriptor.cs: Implemented most of missing methods.
  51. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  52. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  53. Removed unneded TODOs.
  54. * ComponentResourceManager.cs: Implemented ApplyResources.
  55. * EventDescriptorCollection.cs: Implemented several missing methods.
  56. * LicFileLicenseProvider.cs: Implemented.
  57. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  58. the creation of the Attribute list.
  59. * TypeConverter.cs: Use null as default value for attribute array parameter.
  60. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  61. * Win32Exception.cs: added 10024 (WSAEMFILE).
  62. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  63. * AttributeCollection.cs: Don't try to create a default attribute if the
  64. attribute type does not have a default constructor. Fix by Jon Wagner.
  65. This fixes #53898.
  66. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  67. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  68. message as ERROR_FILE_NOT_FOUND.
  69. 2004-03-17 Ivan Hamilton <[email protected]>
  70. * LicenseManager.cs: Completed TODO.
  71. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  72. * Win32Exception.cs: use a switch instead of creating a hashtable when
  73. mapping from an error code to a message.
  74. 2003-11-22 Miguel de Icaza <[email protected]>
  75. * PropertyDescriptorCollection.cs (Insert): Another one.
  76. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  77. 2003-11-13 Andreas Nahr <[email protected]>
  78. * IComponent.cs: Added missing attribute
  79. 2003-11-12 Andreas Nahr <[email protected]>
  80. * ComponentResourceManager.cs: Added and partially implemented
  81. 2003-09-13 Duncan Mak <[email protected]>
  82. Patch from Jörg Rosenkranz <[email protected]>, this fixes the
  83. bugs described in bug #48351.
  84. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  85. multiple values. This is done in Enum.Parse already.
  86. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  87. types because EnumConverter does not have a default
  88. constructor. Fixed by changing the special handling for
  89. enumeration types.
  90. 2003-08-31 Jerome Laban <[email protected]>
  91. * Container.cs: A site without name cannot be duplicate.
  92. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  93. * Win32Exception.cs: added message for 10054.
  94. 2003-07-17 Andreas Nahr <[email protected]>
  95. * CategoryAttribute.cs: Added localization support
  96. 2003-07-17 Andreas Nahr <[email protected]>
  97. * IComponent.cs:
  98. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  99. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  100. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  101. have a TypeConverter. Fixes bug #46397.
  102. 2003-07-14 Jerome Laban <[email protected]>
  103. * IComponent.cs: Removed duplicate Designer attribute.
  104. 2003-07-13 Andreas Nahr <[email protected]>
  105. * Component.cs: Implementation added
  106. * Container.cs: Implementation added
  107. * MarshalByValueComponent.cs: Implementation added
  108. * ReferenceConverter.cs: Small addition for future implementation
  109. 2003-07-10 Andreas Nahr <[email protected]>
  110. * TypeConverter.cs: Implemented missing methods
  111. * TypeDescriptor.cs: Redirections added
  112. 2003-07-05 Andreas Nahr <[email protected]>
  113. * EnumConverter.cs: Fixed signature
  114. * EventDescriptorCollection.cs: Fixed signature
  115. * InheritanceLevel.cs: Fixed enum values; little restyling
  116. * License.cs: Removed undefined member
  117. * LicenseManager.cs: Fixed signature, little implementation added
  118. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  119. * WarningException.cs: Removed wrong attribute
  120. * Win32Exception.cs: Added missing attribute
  121. 2003-07-02 Andreas Nahr <[email protected]>
  122. * AttributeCollection.cs: Fixed public members
  123. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  124. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  125. * CategoryAttribute.cs: Changed public fields to properties
  126. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  127. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  128. * PropertyDescriptorCollection.cs: Fixed public members
  129. * ReferenceConverter.cs: Implementation added
  130. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  131. * TypeDescriptor.cs: Implementations added
  132. 2003-07-02 Andreas Nahr <[email protected]>
  133. * ISite.cs: Fixed attributes, fixed header
  134. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  135. * WarningException.cs: Fixed attributes, formatting corrections
  136. * AttributeCollection.cs: Fixed attributes
  137. * DesignerSerializationVisibility.cs: Fixed attributes
  138. * TypeConverter.cs: Fixed attributes
  139. * MarshalByValueComponent.cs:
  140. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  141. * DescriptionAttribute.cs:
  142. * DesignerCategoryAttribute.cs:
  143. * DoubleConverter.cs:
  144. * EditorBrowsableAttribute.cs:
  145. * EventDescriptorCollection.cs:
  146. * PropertyChangedEventHandler.cs:
  147. * RefreshEventArgs.cs:
  148. * StringConverter.cs:
  149. * DefaultValueAttribute.cs: Reformatted following style guidelines
  150. * License.cs: Removed unused MonoTODOs
  151. * LicenseContext.cs: Implemented
  152. * LicenseException.cs: Implemented
  153. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  154. * LicenseUsageMode.cs: Fixed enum
  155. * RefreshProperties.cs: Fixed enum
  156. * LicFileLicenseProvider.cs: Implementation added
  157. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  158. * ExpandableObjectConverter.cs: Implemented
  159. * ComponentConverter.cs: Implemented
  160. 2003-06-23 Andreas Nahr <[email protected]>
  161. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  162. better Hashcode generation
  163. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  164. better Hashcode generation
  165. * LicenseContext.cs: Added and implemented missing property
  166. * ListBindableAttribute.cs: Simplified implementation, removed
  167. unneccessary data.
  168. * ReadOnlyAttribute.cs: Better Hashcode generation
  169. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  170. Equals check.
  171. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  172. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  173. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  174. * MarshalByValueComponent.cs:
  175. * IContainer.cs:
  176. * IComponent.cs: Added missing attribute(s)
  177. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  178. * AmbientValueAttribute.cs:
  179. * ArrayConverter.cs:
  180. * BaseNumberConverter.cs:
  181. * BindableAttribute.cs:
  182. * BooleanConverter.cs:
  183. * BrowsableAttribute.cs:
  184. * ByteConverter.cs:
  185. * CategoryAttribute.cs:
  186. * CharConverter.cs:
  187. * CollectionConverter.cs:
  188. * Component.cs:
  189. * ComponentCollection.cs:
  190. * ComponentEditor.cs:
  191. * Container.cs:
  192. * CultureInfoConverter.cs:
  193. * DateTimeConverter.cs:
  194. * DecimalConverter.cs:
  195. * DefaultEventAttribute.cs:
  196. * DefaultPropertyAttribute.cs:
  197. * DefaultValueAttribute.cs:
  198. * DescriptionAttribute.cs:
  199. * DesignOnlyAttribute.cs:
  200. * DesignTimeVisibleAttribute.cs:
  201. * DesignerCategoryAttribute.cs:
  202. * DesignerSerializationVisibilityAttribute.cs:
  203. * DoubleConverter.cs:
  204. * EditorBrowsableAttribute.cs:
  205. * EventDescriptor.cs:
  206. * EventDescriptorCollection.cs:
  207. * ExpandableObjectConverter.cs:
  208. * ExtenderProvidedPropertyAttribute.cs: New file.
  209. * GuidConverter.cs:
  210. * IComNativeDescriptorHandler.cs:
  211. * IComponent.cs:
  212. * ImmutableObjectAttribute.cs:
  213. * InheritanceAttribute.cs:
  214. * InheritanceLevel.cs:
  215. * InstallerTypeAttribute.cs:
  216. * Int16Converter.cs:
  217. * Int32Converter.cs:
  218. * Int64Converter.cs:
  219. * InvalidEnumArgumentException.cs:
  220. * LicenseProviderAttribute.cs:
  221. * LocalizableAttribute.cs:
  222. * MarshalByValueComponent.cs:
  223. * MemberDescriptor.cs:
  224. * MergablePropertyAttribute.cs:
  225. * NotifyParentPropertyAttribute.cs:
  226. * ParenthesizePropertyNameAttribute.cs:
  227. * PropertyDescriptor.cs:
  228. * PropertyDescriptorCollection.cs:
  229. * PropertyTabAttribute.cs:
  230. * ProvidePropertyAttribute.cs:
  231. * RecommendedAsConfigurableAttribute.cs:
  232. * RefreshPropertiesAttribute.cs:
  233. * SByteConverter.cs:
  234. * SingleConverter.cs:
  235. * TimeSpanConverter.cs:
  236. * ToolboxItemFilterAttribute.cs:
  237. * TypeConverter.cs:
  238. * TypeConverterAttribute.cs:
  239. * TypeDescriptor.cs:
  240. * TypeListConverter.cs:
  241. * UInt16Converter.cs:
  242. * UInt32Converter.cs:
  243. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  244. ([email protected]).
  245. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  246. * IExtenderProvider.cs: mono-stylized.
  247. * IComNativeDescriptorHandler.cs:
  248. * SyntaxCheck.cs: new files from Andreas Nahr.
  249. 2003-03-20 Dick Porter <[email protected]>
  250. * Win32Exception.cs: Made the fallback error more useful by
  251. reporting the error number
  252. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  253. * MarshalByValueComponent.cs: removed a monotodo.
  254. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  255. * Win32Exception.cs: added error code 2.
  256. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  257. * Win32Exception.cs: implemented GetObjectData ().
  258. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  259. * RunInstallerAttribute.cs: New file.
  260. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  261. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  262. 2003-02-05 Alan Tam <[email protected]>
  263. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  264. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  265. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  266. to bug #37380, mcs complained about this when compiling System.Data.
  267. 2003-01-08 Dick Porter <[email protected]>
  268. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  269. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  270. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  271. implements it. It's done for GetProperties and should be done for the
  272. rest of methods present in ICustomTypeDescriptor.
  273. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  274. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  275. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  276. * DefaultValueAttribute.cs: the attribute applies to All.
  277. 2002-11-19 Duncan Mak <[email protected]>
  278. * DesignerAttribute.cs:
  279. * EditorAttribute: Style changes. Gonzalo committed the build
  280. fixes before I did.
  281. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  282. * DesignerAttribute.cs:
  283. * EditorAttribute.cs: fixed the build.
  284. 2002-11-19 Alejandro Sánchez Acosta <[email protected]>
  285. * EditorAttribute: implemented.
  286. * DesignerAttribute: implemented.
  287. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  288. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  289. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  290. * ListBindableAttribute.cs: implemented.
  291. 2002-11-02 Duncan Mak <[email protected]>
  292. * InvalidEnumArgumentException.cs: Added.
  293. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  294. * EventHandlerList.cs: fixed bug #29535.
  295. 2002-10-03 Dick Porter <[email protected]>
  296. * Win32Exception.cs: Added ETIMEDOUT
  297. 2002-09-30 Dick Porter <[email protected]>
  298. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  299. 2002-09-17 Asier Llano Palacios <[email protected]>
  300. * CancelEventArgs.cs
  301. * WarningException.cs
  302. * CancelEventHandler.cs
  303. * PropertyChangedEventHandler.cs
  304. * IExtenderProvider.cs: Implemented
  305. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  306. * Component.cs:
  307. * ComponentCollection.cs:
  308. * Container.cs:
  309. * MarshalByValueComponent.cs: IDisposable fixes.
  310. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  311. * BindableSupport.cs:
  312. * Component.cs:
  313. * EventDescriptorCollection.cs:
  314. * ITypeDescriptorContext.cs:
  315. * TypeConverter.cs:
  316. * TypeDescriptor.cs: class status based fixes.
  317. * StringConverter.cs: implemented a couple of methods.
  318. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  319. * EnumConverter.cs: new file.
  320. * TypeConverter.cs: implemented a few simple methods.
  321. * TypeDescriptor.cs:
  322. (GetConverter): initial support for converters of well-known types.
  323. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  324. * DerivedPropertyDescriptor.cs: New file. Internal class.
  325. * PropertyDescriptorCollection.cs: almost fully implemented.
  326. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  327. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  328. * Component.cs: don't die if Disposed is null.
  329. 2002-07-22 Tim Coleman <[email protected]>
  330. * RecommendedAsConfigurableAttribute.cs: new file added
  331. for System.Web.Services build
  332. 2002-07-22 Tim Coleman <[email protected]>
  333. * ExpandableObjectConverter.cs: Fix error with constructor
  334. 2002-07-22 Tim Coleman <[email protected]>
  335. * TypeConverter.cs: Fixed bad stubb function
  336. GetConvertToException ()
  337. 2002-07-22 Tim Coleman <[email protected]>
  338. * ComponentCollection.cs: Added reference to
  339. ReadOnlyCollectionBase to make sure
  340. that we inherit the appropriate methods.
  341. Not sure why the Dispose() method is
  342. required, but left for now.
  343. 2002-07-22 Tim Coleman <[email protected]>
  344. * TypeConverter.cs: Added new stubbs
  345. * BindableAttribute.cs: Added
  346. * BindableSupport.cs: Added
  347. * NotifyParentPropertyAttribute.cs: Added
  348. * ExpandableObjectConverter.cs: Added
  349. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  350. * MemberDescriptor.cs: implemented Attributes and Category.
  351. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  352. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  353. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  354. fixed value for Yes.
  355. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  356. * TypeConverter.cs: added SimplePropertyDescriptor class.
  357. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  358. * ToolboxItemAttribute.cs: New file.
  359. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  360. * DefaultEventAttribute.cs: new file.
  361. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  362. * AttributeCollection.cs: fixlet.
  363. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  364. * AttributeCollection.cs: finished implementation.
  365. * TypeDescriptor.cs: implemented GetAttributes (object).
  366. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  367. * AttributeCollection.cs: initialize member variables.
  368. * RefreshEventArgs.cs: implemented.
  369. * RefreshEventHandler.cs: New file.
  370. * TypeDescriptor.cs: fully stubbed out the remaining method.
  371. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  372. * DefaultPropertyAttribute.cs: New file.
  373. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  374. * TypeConverter.cs: flushed local changes.
  375. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  376. * StringConverter.cs: stubbed out.
  377. * TypeConverter.cs: stubbed the rest out and added some implementation.
  378. Five errors left when compiling System.Web in linux.
  379. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  380. * TypeConverterAttribute.cs: attribute used by
  381. TypeDescriptor.Getconverter ().
  382. * TypeDescriptor.cs: implemented GetConverter in the right way.
  383. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  384. * TypeConverter.cs:
  385. * ITypeDescriptorContext.cs:
  386. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  387. which uses ColorConverter.
  388. 2002-05-12 Daniel Morgan <[email protected]>
  389. * IComponent.cs
  390. * ISite.cs: added using System
  391. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  392. to // TODOs and added using System. The throwing of the exceptions prevented
  393. System.Data from running.
  394. 2002-05-10 Rodrigo Moya <[email protected]>
  395. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  396. not this[index], which issues an 'ambigous call' error on Linux.
  397. 2002-05-07 Rodrigo Moya <[email protected]>
  398. * EventDescriptor.cs: added missing constructors.
  399. * EventDescriptorCollection.cs: fixed interface methods implementation
  400. * IDataErrorInfo.cs:
  401. * IEditableObject.cs: new interfaces.
  402. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  403. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  404. it compile.
  405. 2002-05-03 Rodrigo Moya <[email protected]>
  406. * AttributeCollection.cs:
  407. * EventDescriptor.cs:
  408. * EventDescriptorCollection.cs:
  409. * ICustomTypeDescriptor.cs: new files.
  410. 2002-05-01 Duncan Mak <[email protected]>
  411. * ListChangedType.cs:
  412. * ListChangedEventHandler.cs:
  413. * ListChangedEventArgs.cs: Added to fix build.
  414. 2002-05-01 Miguel de Icaza <[email protected]>
  415. * PropertyDescriptorCollection.cs: Added the IList explicit
  416. implementation methods.
  417. lots of bug fixes to get the build to compile again.
  418. 2002-05-01 Duncan Mak <[email protected]>
  419. * ListSortDirection.cs: EnumChecked.
  420. 2002-05-01 Rodrigo Moya <[email protected]>
  421. * ListSortDirection.cs: new enumeration. Please, somebody run
  422. EnumCheck on it, as I don't have a windows machine.
  423. * PropertyDescriptorCollection.cs: new class.
  424. * ITypedList.cs:
  425. * IBindingList.cs: new interfaces.
  426. 2002-04-28 Duncan Mak <[email protected]>
  427. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  428. implementation. Please use EnumCheck!
  429. 2002-04-28 Rodrigo Moya <[email protected]>
  430. * CollectionChangeAction.cs: new enumeration.
  431. * CategoryAttribute.cs: moved the 'return' keyword to the
  432. end of the method, to avoid compilation errors on Linux for
  433. all CategoryAttribute properties.
  434. 2002-04-28 Rodrigo Moya <[email protected]>
  435. * IListSource.cs:
  436. * ISupportInitialize.cs:
  437. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  438. compilation.
  439. * PropertyChangedEventArgs.cs:
  440. * CollectionChangeEventHandler.cs:
  441. * CollectionChangeEventArgs.cs: implemented.
  442. 2002-04-28 Lawrence Pit <[email protected]>
  443. * Added error code 11001 to Win32Exception, used by Dns.c
  444. 2002-04-04 Dick Porter <[email protected]>
  445. * ISynchronizeInvoke.cs: Needed by Process
  446. 2002-01-23 Dick Porter <[email protected]>
  447. * Win32Exception.cs: implement, with support for looking up
  448. runtime errors.
  449. 2002-01-17 Miguel de Icaza <[email protected]>
  450. * Win32Exception.cs: Add.
  451. 2002-01-05 Ravi Pratap <[email protected]>
  452. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  453. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  454. 2001-10-27 Miguel de Icaza <[email protected]>
  455. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  456. * DesignerSerializationVisibility.cs: New enumeration.
  457. * LocalizableAttribute.cs: Implemented.
  458. * BrowsableAttribute.cs: Implemented.
  459. * DesignOnlyAttribute.cs: Implemented.
  460. * DescriptionAttribute.cs: Implement.
  461. * MemberDescriptor.cs: Implemented.
  462. * CategoryAttribute.cs: implemented.
  463. 2001-08-21 Nick Drochak <[email protected]>
  464. * Component.cs: Eliminated compile errors by removing redundant fields and
  465. using the ISite member instead. Also raised the Disposed event, but not
  466. sure if it's correct now. Look for FIXME in the comments.
  467. 2001-08-02 Miguel de Icaza <[email protected]>
  468. * EventHandlerList.cs: New file.
  469. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  470. ComponentCollection.cs, ISite.cs: New classes