ChangeLog 38 KB

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