2
0

ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. 2006-03-11 Miguel de Icaza <[email protected]>
  2. * ConfigurationSettings.cs (ChangeConfigurationSettings): Make
  3. internal to avoid warnings. This routine is called from
  4. System.Web with MethodInfo.Invoke.
  5. 2006-02-01 Atsushi Enomoto <[email protected]>
  6. * SettingElementCollection.cs : CollectionType is protected.
  7. 2006-01-16 Chris Toshok <[email protected]>
  8. * ConfigurationSettings.cs (AppSettings): move back to a 1.x
  9. strategy in the 2.0 case. That is, don't hardcode the reference
  10. to ConfigurationManager.AppSettings (yet). Eventually we can move
  11. back to this code, once ConfigurationManager supports reading
  12. web.config for settings.
  13. 2006-01-03 Chris Toshok <[email protected]>
  14. * ConfigurationSettings.cs (GetConfig): be nice to people using
  15. old 1.x style section handlers with the new 2.0 config stuff. If
  16. we're about to return null or IgnoreSection, try to load it using
  17. the 1.x api. If that works, return that object.
  18. 2006-01-02 Chris Toshok <[email protected]>
  19. * LocalFileSettingsProvider.cs: use the PrebuiltSystem extern
  20. alias to make sure we use the right type for NameValueCollection.
  21. (Initialize): enable (under the CONFIGURATION_2_0 ifdef).
  22. * ConfigurationSettings.cs: use the PrebuiltSystem extern alias to
  23. make sure we use the right type for NameValueCollection.
  24. (AppSettings): provide an implementation for the NET_2_0 &&
  25. CONFIGURATION_2_0 case.
  26. (GetConfig): same.
  27. (ReadSectionGroup): allow a type attribute in the NET_2_0 &&
  28. CONFIGURATION_2_0 case.
  29. * AppSettingsReader.cs: use the PrebuiltSystem extern alias to
  30. make sure we use the right type for NameValueCollection.
  31. 2005-11-28 Chris Toshok <[email protected]>
  32. * SettingValueElement.cs: wrap a few more things in
  33. CONFIGURATION_DEP.
  34. 2005-11-09 Chris Toshok <[email protected]>
  35. * ConfigurationSettings.cs (AppSettings): remove the #if NET_2_0
  36. block breaks this.
  37. (ReadSectionGroup): allow the "type" atrribute so we don't break
  38. when reading a 2.0 config file using the 1.0 stuff.
  39. 2005-11-04 Chris Toshok <[email protected]>
  40. * SettingsProvider.cs, SettingsPropertyValueCollection.cs,
  41. SettingValueElement.cs, SettingElement.cs,
  42. SettingsPropertyValue.cs, ApplicationSettingsBase.cs,
  43. SettingsPropertyCollection.cs, SettingsProviderCollection.cs,
  44. SettingElementCollection.cs: Add XML_DEPS and CONFIGURATION_DEPS
  45. to get this to bootstrap compile. What a pain.
  46. 2005-11-04 Chris Toshok <[email protected]>
  47. * ApplicationSettingsBase.cs: remove unnecessary using.
  48. * SettingValueElement.cs: add XML_DEP's.
  49. 2005-11-03 Chris Toshok <[email protected]>
  50. * ConfigurationSettings.cs: add ObsoleteAttribute's.
  51. * ConfigurationException.cs: add ObsoleteAttribute's.
  52. * IConfigurationSystem.cs: add ComVisibleAttribute.
  53. * ApplicationSettingsBase.cs: new stubs, with a broken/naive
  54. implementation.
  55. * SettingElementCollection.cs, IPersistComponentSettings.cs,
  56. SettingElement.cs, LocalFileSettingsProvider.cs,
  57. SettingValueElement.cs: new stubs.
  58. * SettingAttribute.cs: fix typo.
  59. 2005-09-22 Chris Toshok <[email protected]>
  60. * SettingsPropertyWrongTypeException.cs: new exception.
  61. 2005-09-20 Chris Toshok <[email protected]>
  62. * SettingsPropertyValue.cs
  63. (SettingsPropertyValue.set_PropertyValue): set needPropertyValue =
  64. false here so we don't pull in the default value in the getter.
  65. * SettingsProviderCollection.cs: new implementation.
  66. * SettingsPropertyValueCollection.cs
  67. (SettingsPropertyValueCollection..ctor): init items.
  68. (Add): add an internal method that takes a
  69. SettingsPropertyValueCollection.
  70. 2005-09-20 Chris Toshok <[email protected]>
  71. * SettingsSavingEventHandler.cs: new delegate.
  72. * SettingChangingEvent{Handler,Args}.cs: new delegate and args
  73. * SettingsLoaded{Handler,Args}.cs: new delegate and args
  74. * SettingsProviderAttribute.cs, SettingSerializeAsAttribute.cs,
  75. UserScopedSettingAttribute.cs, DefaultSettingValueAttribute.cs,
  76. ApplicationScopedSettingAttribute.cs, SettingAttribute: new
  77. attributes.
  78. 2005-09-20 Chris Toshok <[email protected]>
  79. * SettingChangingEventArgs.cs: new implementation.
  80. * SettingsPropertyIsReadOnlyException.cs: new exception.
  81. * SettingsPropertyNotFoundException.cs: new exception.
  82. * ISettingsProviderService.cs: new interface.
  83. * IApplicationSettingsProvider.cs: new interface.
  84. * SettingsPropertyValueCollection.cs: new implementation.
  85. * SettingsPropertyCollection.cs: new implementation.
  86. * SettingsBase.cs: implement the obvious bits (getters,
  87. basically).
  88. * SettingsPropertyValue.cs: make this work for the tests.
  89. Disgusting class here. dis-gus-ting.
  90. 2005-09-19 Chris Toshok <[email protected]>
  91. * System.Configuration/SettingsProvider.cs,
  92. System.Configuration/SettingsPropertyValueCollection.cs,
  93. System.Configuration/SettingsPropertyCollection.cs,
  94. System.Configuration/SettingsProviderCollection.cs,
  95. System.Configuration/SettingsBase.cs,
  96. System.Configuration/SettingsSerializeAs.cs,
  97. System.Configuration/SettingsPropertyValue.cs,
  98. System.Configuration/SettingsProperty.cs,
  99. System.Configuration/SettingsContext.cs,
  100. System.Configuration/SettingsAttributeDictionary.cs: new files.
  101. 2005-07-05 Raja R Harinath <[email protected]>
  102. * ConfigurationSettings.cs (ConnectionStrings): Change XML_DEP
  103. guard to CONFIGURATION_DEP.
  104. 2005-06-15 Lluis Sanchez Gual <[email protected]>
  105. * ProviderBase.cs: Moved here from System.Configuration.dll.
  106. 2005-06-14 Lluis Sanchez Gual <[email protected]>
  107. * AppSettingsSection.cs, ConfigInfo.cs, Configuration.cs
  108. ConfigurationAllowDefinition.cs, ConfigurationElement.cs
  109. ConfigurationElementCollection.cs, ConfigurationElementCollectionType.cs
  110. ConfigurationLocation.cs, ConfigurationLocationCollection.cs
  111. ConfigurationProperty.cs, ConfigurationPropertyAttribute.cs
  112. ConfigurationPropertyCollection.cs, ConfigurationPropertyFlags.cs
  113. ConfigurationSection.cs, ConfigurationSectionCollection.cs
  114. ConfigurationSectionGroup.cs, ConfigurationSectionGroupCollection.cs
  115. ConfigurationUpdateMode.cs, ConfigurationUserLevel.cs
  116. ConfigurationValidationAttribute.cs, ConnectionStringsSection.cs
  117. ConnectionStringSettingsCollection.cs, ConnectionStringSettings.cs
  118. IntegerConfigurationProperty.cs, NonEmptyStringConfigurationProperty.cs
  119. NonEmptyStringFlags.cs, PathLevel.cs, ProtectedConfigurationProvider.cs
  120. ProviderBase.cs, ProviderSettings.cs, ProviderSettingsCollection.cs
  121. RuntimeOnlySection.cs, SectionInfo.cs, SectionGroupInfo.cs
  122. TimeSpanConfigurationProperty.cs, TimeSpanPropertyFlags.cs
  123. TimeSpanSerializedFormat.cs:
  124. Moved to the new System.Configuration assembly.
  125. 2005-03-23 Jackson Harper <[email protected]>
  126. * ApplicationSettingsBase.cs: We need this stub to do some 2.0
  127. winforms stuff.
  128. 2005-03-16 Gonzalo Paniagua Javier <[email protected]>
  129. * Configuration.cs: a few MonoTODOs less.
  130. 2005-03-02 Sureshkumar T <[email protected]>
  131. * ConfigurationSettings.cs: Implemented ConnectionStrings
  132. property.
  133. 2005-02-22 Sureshkumar T <[email protected]>
  134. * ConnectionStringsSection.cs: Implemented all methods.
  135. New Files Added:
  136. * ConnectionStringSettings.cs: Configuration object for a
  137. connection string element.
  138. * ConnectionStringSettingsCollection.cs: Collection of
  139. ConnectionStringSettings objects.
  140. 2005-02-16 Gonzalo Paniagua Javier <[email protected]>
  141. * Configuration.cs: (.ctor) don't fail if the file to load does not
  142. exist.
  143. (GetExeConfiguration): use caller assembly location if the path is null
  144. and check that the exe file exists.
  145. Removed if XML_DEP, as there's one at the top of the file.
  146. 2004-11-18 Geoff Norton <[email protected]>
  147. * ProviderSettingsCollection.cs: Add XML_DEP because this inherits
  148. ConfigurationElementCollection which has XML_DEP. Fixes bootstrap
  149. 2004-11-18 Lluis Sanchez Gual <[email protected]>
  150. * ProviderSettings.cs, ProviderSettingsCollection.cs: Mostly implemented.
  151. * Configuration.cs: Implemented GetSection() and GetSectionGroup().
  152. * AppSettingsSection.cs: Better null check in Reset().
  153. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  154. * TimeSpanConfigurationProperty.cs, TimeSpanPropertyFlags.cs,
  155. TimeSpanSerializedFormat.cs: Implemented.
  156. 2004-11-09 Duncan Mak <[email protected]>
  157. * NonEmptyStringConfigurationProperty.cs: Add XML_DEP, this should
  158. fix the build.
  159. 2004-11-09 Lluis Sanchez Gual <[email protected]>
  160. * ConfigurationElement.cs: Implemented Equals and GetHashCode.
  161. Only reflect properties from type's members if the type does not
  162. override Properties.
  163. * ConfigurationElementCollection.cs: Implemented Equals and GetHashCode.
  164. Other minor fixes.
  165. * ConfigurationProperty.cs: It is not a subclass of ConfigurationElement.
  166. * NonEmptyStringConfigurationProperty.cs, NonEmptyStringFlags.cs:
  167. Implemented.
  168. 2004-11-09 Lluis Sanchez Gual <[email protected]>
  169. * AppSettingsSection.cs: Mostly implemented (missing support for
  170. file attribute).
  171. * ConfigHelper.cs: GetNameValueCollection now returns a
  172. ConfigNameValueCollection instance which is a NameValueCollection with a
  173. modification flag.
  174. * ConfigInfo.cs: Added XPath property.
  175. * Configuration.cs: Implemented AppSettings property. Set the Path property
  176. of sections and groups.
  177. * ConfigurationElement.cs: Support key serialization. Properly reset
  178. nested elements.
  179. * ConfigurationElementCollection.cs: Initial implementation.
  180. * ConfigurationSection.cs: Impemented Path and GetRuntimeObject.
  181. * ConfigurationSectionGroup.cs: Implemented Path.
  182. * SectionGroupInfo.cs: Little fix.
  183. 2004-11-05 Lluis Sanchez Gual <[email protected]>
  184. * Configuration.cs: Minor fixes.
  185. * ConfigurationElement.cs: Added support for the different update modes.
  186. * SectionGroupInfo.cs: Support loading the same configuration section
  187. from different files.
  188. * SectionInfo.cs: Properly write back configuration data for which a
  189. section object has not been created.
  190. 2004-11-04 Lluis Sanchez Gual <[email protected]>
  191. * AppSettingsSection.cs, ConfigurationPropertyCollection.cs,
  192. ConfigurationValidationAttribute.cs, ConnectionStringsSection.cs,
  193. ProtectedConfigurationProvider.cs, ProviderBase.cs
  194. RuntimeOnlySection.cs: Fixed formatting and added missing TODOs.
  195. 2004-11-04 Lluis Sanchez Gual <[email protected]>
  196. * Configuration.cs, ConfigurationElement.cs, ConfigurationLocation.cs,
  197. ConfigurationLocationCollection.cs, ConfigurationProperty.cs,
  198. ConfigurationPropertyAttribute.cs, ConfigurationSection.cs,
  199. ConfigurationSectionCollection.cs, ConfigurationSectionGroup.cs,
  200. ConfigurationSectionGroupCollection.cs,IntegerConfigurationProperty.cs,
  201. RuntimeOnlySection.cs: Initial implementation.
  202. * ConfigurationAllowDefinition.cs: Removed XML_DEP ifdef
  203. * ConfigurationException.cs: format fix.
  204. * ConfigInfo.cs, SectionInfo.cs, SectionGroupInfo.cs: New support
  205. classes.
  206. 2004-09-10 Tim Coleman <[email protected]>
  207. * ConfigurationElementCollection.cs ConfigurationElementCollectionType.cs:
  208. New Fx 2.0 stubs
  209. * ConfigurationElement.cs:
  210. Fix function declaration
  211. 2004-08-16 Duncan Mak <[email protected]>
  212. * ConfigurationElement.cs (InitializeDefault): Made virtual.
  213. * AppSettingsSection.cs:
  214. * Configuration.cs:
  215. * ConfigurationLocation.cs:
  216. * ConfigurationLocationCollection.cs:
  217. * ConfigurationSection.cs:
  218. * ConfigurationSectionCollection.cs:
  219. * ConfigurationSectionGroup.cs:
  220. * ConfigurationSectionGroupCollection.cs:
  221. * ConnectionStringsSection.cs: Added stubs and bits of implementation.
  222. Other than ConfigurationElementCollection and
  223. ConnectionStringsSectionCollection, we now have the basic skeleton
  224. for implementing the configuration system in the
  225. System.Configuration namespace.
  226. 2004-08-11 Duncan Mak <[email protected]>
  227. * ProtectedConfigurationProvider.cs: Use XML_DEP.
  228. 2004-08-11 Duncan Mak <[email protected]>
  229. * ProtectedConfigurationProvider.cs:
  230. * ProviderBase.cs: Implemented.
  231. * ConfigurationPropertyAttribute.cs: Implemented attribute.
  232. * ConfigurationAllowDefinition.cs:
  233. * ConfigurationUserLevel.cs:
  234. * PathLevel.cs: Added enumerations.
  235. 2004-08-07 Atsushi Enomoto <[email protected]>
  236. * ConfigurationElement.cs,
  237. ConfigurationProperty.cs,
  238. ConfigurationPropertyCollection.cs,
  239. ConfigurationValidationAttribute.cs : use XML_DEP.
  240. 2004-08-06 Duncan Mak <[email protected]>
  241. * ConfigurationElement.cs: Added stubs.
  242. * ConfigurationProperty.cs:
  243. * ConfigurationPropertyCollection.cs:
  244. * ConfigurationValidationAttribute.cs: Added.
  245. * ConfigurationPropertyFlags.cs:
  246. * ConfigurationUpdateMode.cs: Added 2.0 enumerations.
  247. 2004-06-15 Gonzalo Paniagua Javier <[email protected]>
  248. * ConfigurationSettings.cs: allow empty <configSections>.
  249. 2004-05-17 Gonzalo Paniagua Javier <[email protected]>
  250. * ConfigurationSettings.cs: don't ask me why, but the .cctor
  251. initialization of 'instance' field does no longer work.
  252. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  253. * ConfigXmlDocument.cs: removed method that was supposed to be internal.
  254. * ConfigurationSettings.cs: instead of calling the overload that doesn't
  255. exist in MS, use what we have when loading an external file.
  256. 2004-04-20 Gonzalo Paniagua Javier <[email protected]>
  257. * ConfigXmlDocument.cs: fixed overloaded Load and added a new one that
  258. sets the file name.
  259. * ConfigurationSettings.cs: use the new Load in ConfigXmlDocument when
  260. loading sections.
  261. * NameValueFileSectionHandler.cs: don't fails if the path for the 'file'
  262. attribute doesn't have a directory.
  263. Closes bug #57244.
  264. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  265. * ConfigurationSettings.cs: removed FileWatcherCache. See bug #53445.
  266. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  267. * ConfigurationSettings.cs: initialize config in
  268. ChangeConfigurationSettings if it has not been done yet. Patch by
  269. George Kodinov [email protected]). Fixes bug #51643.
  270. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  271. * ConfigurationSettings.cs: handle allowdefinition and allowlocation,
  272. added locks, don't reopen the file for every new section to be read,
  273. but keep them as strings and build the section handlers with that.
  274. Also allow changing the configuration system (used from System.Web).
  275. 2003-11-17 Ben Maurer <[email protected]>
  276. * ConfigurationSettings.cs: make the *Mark objects static
  277. because they need to be comparable across instances.
  278. (ReadSectionGroup): You can add an element to a group declared
  279. in the parent config files (MS.net's QuickStarts do this).
  280. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  281. * ConfigurationSettings.cs: don't handle null or non-existent file in
  282. the catch blocks.
  283. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  284. * ConfigurationSettings.cs: really make the cache work.
  285. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  286. * ConfigurationSettings.cs: pass the file name we're reading as the
  287. context.
  288. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  289. * ConfigurationSettings.cs: patch by Eric Lindvall ([email protected])
  290. that improves performance by not reading the file more than once.
  291. 2003-07-15 Andreas Nahr <[email protected]>
  292. * ConfigurationSettings.cs: Removed unused exception variable, fixes
  293. compiler warning
  294. 2003-06-16 Lluis Sanchez Gual <[email protected]>
  295. * ConfigurationSettings.cs: Avoid chicken-egg problem when reading
  296. machine.config. Cannot use an uri to read mechine.config because web
  297. request module handelrs are defined in machine.config.
  298. 2003-03-02 Gonzalo Paniagua Javier <[email protected]>
  299. * AppSettingsReader.cs: fixed bug #38755.
  300. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  301. * ConfigXmlDocument.cs: don't jump over the first element.
  302. * ConfigurationSettings.cs: pass doc.DocumentElement instead of doc.
  303. This used to work until i tried to access one attribute of the first
  304. element and realized that the element was not the expected!
  305. This change does not affect the configuration handlers that only use
  306. ChildNodes property on the XmlNode they get as argument.
  307. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  308. * ConfigurationSettings.cs: removed type loading hack no longer needed.
  309. 2002-12-14 Jonathan Pryor <[email protected]>
  310. * ConfigurationSettings.cs: Allow configuration sections to be removed.
  311. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  312. * ConfigurationSettings.cs: use AppDomainSetup to get the configuration
  313. file name for the AppDomain.
  314. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  315. * ConfigHelper.cs: NameValueCollection.Add is now fixed.
  316. 2002-10-14 Martin Baulig <[email protected]>
  317. * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath):
  318. Append ".config" to the filename, not ".exe.config" since the
  319. filename already has a ".exe" suffix.
  320. 2002-10-14 Martin Baulig <[email protected]>
  321. * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath): Use
  322. Assembly.Location, not Assembly.FullName to get its filename.
  323. 2002-10-10 Gonzalo Paniagua Javier <[email protected]>
  324. * ConfigHelper.cs: workaround for a bug in NameValueCollection.
  325. * ConfigurationSettings.cs: load sections when the parent holds a
  326. handler for it. Now overriding appSettings values in the app config
  327. file works (first <remove..> and then <add...).
  328. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  329. * ConfigHelper.cs:
  330. * NameValueFileSectionHandler.cs: check that Attributes is not null.
  331. 2002-10-09 Miguel de Icaza <[email protected]>
  332. * NameValueFileSectionHandler.cs: For now if a section is not
  333. present, return null. Do not know what the real fix is. Gonzalo
  334. will have to look at this, but the debugger was crashing as
  335. appSettings in the machine.config does not exist, but GetConfig
  336. returns a non-null value when looking it up when you do a
  337. GetDocumentForSection ("appSettings").
  338. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  339. * ConfigurationSettings.cs: use get_machine_config_path internal call.
  340. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  341. * ConfigXmlDocument.cs: move the reader for the section to the first
  342. element.
  343. * ConfigurationSettings.cs: fixed hierarchical search for a handler.
  344. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  345. * ConfigurationSettings.cs: reimplemented. It is now able to deliver
  346. sections to their handlers for processing.
  347. 2002-10-03 Gonzalo Paniagua Javier <[email protected]>
  348. * ConfigHelper.cs: New file. Contains some
  349. helper functions for getting key-value collections from the config file.
  350. * ConfigXmlDocument.cs: wrapper around xml elements to provide line
  351. number and file name info.
  352. * IConfigXmlNode.cs: used in ConfigXmlDocument and
  353. ConfigurationException.
  354. * ConfigurationException.cs: get file name and line
  355. number from the wrapped XmlNode. Display this info in Message.
  356. * NameValueFileSectionHandler.cs: new handler.
  357. * DictionarySectionHandler.cs:
  358. * NameValueSectionHandler.cs: modified to use the helper methods in
  359. ConfigHelper.
  360. 2002-10-02 Gonzalo Paniagua Javier <[email protected]>
  361. * AppSettingsReader.cs: New file.
  362. * IConfigurationSystem.cs: New file.
  363. * IgnoreSectionHandler.cs:
  364. * NameValueSectionHandler.cs:
  365. * SingleTagSectionHandler.cs: little fixes.
  366. 2002-09-03 Martin Baulig <[email protected]>
  367. * ConfigurationSettings.cs (ConfigurationSettings.GetConfig): Use the
  368. correct configuration filename, fixed the TODO.
  369. (GetSectionHanderType): Renamed to GetSectionHandlerType.
  370. * NameValueSectionHandler.cs (NameValueSectionHandler.Create): Allow
  371. whitespaces in the configuration file.
  372. 2002-01-31 Duncan Mak <[email protected]>
  373. * ConfigurationException.cs: Rewrote most of the file and added
  374. serialization bits.
  375. 2002-01-06 Ravi Pratap <[email protected]>
  376. * ConfigurationSettings.cs, IgnoreSectionHandler.cs : MonoTODO decoration
  377. * SingleTagSectionHandler.cs, DictionarySectionHandler.cs,
  378. NameValueSectionHandler.cs : Ditto.
  379. 2001-08-28 Christopher Podurgiel <[email protected]>
  380. * IConfigurationSectionHandler.cs: Added reference to System.Xml.
  381. * SingleTagSectionHandler.cs: Added Implementation of Create() method.
  382. * NameValueSectionHandler.cs: Added Implementation of Create() method.
  383. * ConfigurationException.cs: Now returns proper message rather than "System Exception".
  384. 2001-08-26 Christopher Podurgiel <[email protected]>
  385. * ConfigurationSettings.cs: No longer references the
  386. NameValueSectionHandler directly. Instead it uses
  387. System.Reflection to call the Create() method for the appropriate
  388. SectionHandler as defined in the .config file.