ChangeLog 48 KB

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