2
0

ChangeLog 49 KB

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