ChangeLog 41 KB

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