ChangeLog 20 KB

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