2008-03-19 Zoltan Varga <vargaz@gmail.com>
[mcs.git] / class / System / System.Diagnostics / ChangeLog
blob5e114659322ab4a505fa9a32254a14d8a42fa7f7
1 2008-03-19  Zoltan Varga  <vargaz@gmail.com>
3         * Stopwatch.cs: Fix visibility of GetTimestamp () method.
5 Thu Feb 28 19:52:30 CET 2008 Paolo Molaro <lupus@ximian.com>
7         * CounterCreationData.cs, PerformanceCounterCategory.cs,
8         PerformanceCounter.cs: bugfixes, icalls for categories,
9         more methods implemented.
11 Wed Feb 27 20:00:04 CET 2008 Paolo Molaro <lupus@ximian.com>
13         * CounterSample.cs, CounterSampleCalculator.cs, PerformanceCounter.cs,
14         PerformanceCounterCategory.cs, PerformanceCounterCategoryType.cs:
15         beginning of the performance counter implementation.
17 Tue Feb 26 18:37:13 CET 2008 Paolo Molaro <lupus@ximian.com>
19         * Stopwatch.cs: use an hires monotonic clock.
21 2008-01-23  Gert Driesen  <drieseng@users.sourceforge.net>
23         * FileVersionInfo.cs (GetVersionInfo): Resolve filename to absolute
24         path, and throw FileNotFoundException if it does not exist.
26 2007-12-22  Gert Driesen  <drieseng@users.sourceforge.net>
28         * Process.cs: In PriorityClass setter, first check whether value is
29         valid and remove LAMESPEC since the documentation has been corrected
30         for .NET 3.5. Code formatting.
32 2007-12-19  Dick Porter  <dick@ximian.com>
34         * Process.cs: Check that the process has been started before
35         getting or setting the priority class.  Fixes bug 348415.
37 2007-12-10  Miguel de Icaza  <miguel@novell.com>
39         * DefaultTraceListener.cs: By default set the AssertUiEnabled to
40         false, as this is what we had previously and some broken
41         applications (Tomboy) are too trigger happy with Debug.Assert. 
43         Also, we now load the Windows.Forms code on demand, instead of
44         preloading it on the static ctor to reduce memory usage.
46 2007-12-08  Gert Driesen  <drieseng@users.sourceforge.net>
48         * LocalFileEventLog.cs: To allow entry to be fully written before
49         attempting to read it, added small sleep period in the Created event
50         of the FSW.
52 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
54         * Process.cs: Modified StartInfo to throw ArgumentNullException when
55         value is set to null, instead of ArgumentException. Remove check if
56         file name is rooted and exists when UseShellExecute is false, and let
57         runtime handle this. Fixes bug #3455655. When a process cannot be
58         started, do not access ProcessStartInfo.EnvironmentVariables since that
59         would not allow us to re-use the instance when changing
60         UseShellExecute. Added argument check in Start (ProcessStartInfo).
61         Code formatting.
63 2007-11-16  Jb Evain  <jbevain@novell.com>
65         * Debug_2_1.cs: simply write debug messages to the
66         console.
68 2007-11-15  Dick Porter  <dick@ximian.com>
70         * Process.cs: Pass the process handle to GetModules_internal();
72 2007-11-13  Atsushi Enomoto  <atsushi@ximian.com>
74         * Process.cs : ... and it exposed some missing attributes.
76 2007-11-13  Atsushi Enomoto  <atsushi@ximian.com>
78         * Process.cs : oops, SessionId was int.
80 2007-11-13  Atsushi Enomoto  <atsushi@ximian.com>
82         * Process.cs : added missing SessionId (NIE).
84 2007-10-30  Robert Jordan  <robertj@gmx.net>
86         * Process.cs: Wrap the redirected streams with a stream
87         that provides real async Begin/Read|Write operations.
88         Fixes bug #319829.
90 2007-09-25  Miguel de Icaza  <miguel@novell.com>
92         * Process.cs: Return an empty collection to prevent crashes;
93         Fixes #319946
95 Tue Sep 25 18:03:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
97         * Process.cs: eliminate the console encoding logic which was
98         duplicated from System.Console and just use Console.Out.Encoding
99         (bug #328162).
101 2007-09-21  Gert Driesen  <drieseng@users.sourceforge.net>
103         * DiagnosticsConfigurationHandler.cs: Rename ValidateIntegralValue
104         to GetSwitchValue. On 2.0 profile, leave the type conversion to
105         Switch implementations. Minor corrections to exception messages to
106         match MS.
107         * Switch.cs: Avoid unnecessary inits. On 2.0 profile, catch and
108         rethrow exceptions in setter for Value. Do not hide exceptions thrown
109         in GetConfigFileSetting. Only set value from config file if switch is
110         actually defined.
111         * SourceSwitch.cs: Use SwitchSetting for getting/storing value instead
112         of new field. In OnValueChanged, parse enum value.
113         * TraceSwitch.cs: If SwitchSetting is changed to value > 4, then set
114         it to Verbose. In OnValueChanged, parse value case-insensitively, and
115         assign it to SwitchSetting (to allow other integral values).
117 2007-09-05  Atsushi Enomoto  <atsushi@ximian.com>
119         * EventLog.cs : added cosmetic 2.0 attributes on newly added members.
121 2007-09-05  Atsushi Enomoto  <atsushi@ximian.com>
123         * EventLog.cs, EventLogImpl.cs, LocalFileEventLog.cs, NullEventLog.cs,
124           Win32EventLog.cs : added missing members, will be left unsupported
125           in non-Win32 impl and left unimplemented in Win32.
126         * CounterCreationDataCollection.cs : in 2.0 OnValidate() is overriden
127           instad of OnInsert().
128         * Process.cs : removed StandardErrorEncoding and
129           StandardOutputEncoding. They do not exist anymore.
131 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
133         * ProcessStartInfo.cs : Implemented Verbs. It is done.
135 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
137         * Process.cs, ProcessStartInfo.cs : user info support (on windows).
139 2007-08-23  Robert Jordan  <robertj@gmx.net>
141         * Process.cs: implement PriorityClass. Fixes #81756.
143 Mon Aug 20 12:41:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
145         * Process.cs: implemented icall for system/user times.
147 2007-08-14  Gert Driesen  <drieseng@users.sourceforge.net>
149         * EventLog.cs: Do not allow all whitespace machine name. Do nothing
150         when setting the same value for EnableRaisingEvents, and only modify
151         value of field when enable/disable succeeded. Treats log name case
152         insensitively on all platforms, and perform reset when the log name
153         is changed. Validate new machine name in property, and treat it
154         case-insensitively. Perform reset when source is modified, and log
155         name was not explicitly set. When EventLog is closed, also disable
156         event watcher.
157         * LocalEventLog.cs: In Close, clean-up the FileSystemWatcher. Add
158         locking to Created eventhandler to avoid duplicate notifications.
159         * Win32EventLog.cs: Cache handle for reading from eventlog. In Close,
160         close the read handle. Implement support for watching win32 eventlog.
161         Fixes bug #82436.
163 2007-08-08  Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
165         * Process.cs: added StandardOutputEncoding and StandardErrorEncoding
166         properties. Bug #82262 fixed.
168 2007-08-06  Atsushi Enomoto  <atsushi@ximian.com>
170         * Process.cs, ProcessStartInfo.cs : added StandardOutputEncoding
171           and StandardErrorEncoding.
173 2007-08-06  Atsushi Enomoto  <atsushi@ximian.com>
175         * PerformanceCounterCategory.cs PerformanceCounter.cs :
176           added missing 2.0 stuff (unimplemented, where things are anyways
177           unimplemented in 1.x layer).
179 2007-08-06  Atsushi Enomoto  <atsushi@ximian.com>
181         * PerformanceCounterInstanceLifetime.cs
182           PerformanceCounterCategoryType.cs : new.
183         * ICollectData.cs ProcessStartInfo.cs
184           InstanceDataCollectionCollection.cs PerformanceCounter.cs
185           InstanceDataCollection.cs Process.cs :
186           cosmetic attributes cleanup.
188 2007-08-03  Jb Evain  <jbevain@novell.com>
190         * FileVersionInfo.cs: force the use of the params
191         AppendFormat method of StringBuilder as it is the only
192         one accessible in 2.1 and in the previous versions.
194 2007-08-03  Jb Evain  <jbevain@novell.com>
196         * FileVersionInfo.cs: remove CAS checks for 2.1.
198 2007-08-03  Jb Evain  <jbevain@novell.com>
200         * Process.cs: disable StartExistCallbackIfNeeded in 2.1.
202 2007-08-03  Jb Evain  <jbevain@novell.com>
204         * ProcessThreadCollection.cs
205           ProcessModuleCollection.cs: use our own collection base
206           for the 2.1 profile, as ReadOnlyCollectionBase does not exist
207           in 2.1, and they are internalized by the linker.
209 2007-08-02  Atsushi Enomoto  <atsushi@ximian.com>
211         * EventLogTraceListener.cs : fixed wrong 2.0 dependency in 1.x.
213 2007-08-02  Atsushi Enomoto  <atsushi@ximian.com>
215         * EventLogTraceListener.cs : implemented.
217 2007-08-02  Atsushi Enomoto  <atsushi@ximian.com>
219         * EventLogImpl.cs
220           EventLog.cs
221           LocalFileEventLog.cs : Implemented EntryWritten event support.
222         * Win32EventLog.cs, NullEventLog.cs : they need stub overrides.
223         * EventLogEntry.cs : [MonitoringDescription].
224         * DiagnosticsConfigurationHandler.cs : [Obsolete]
226 2007-08-01  Atsushi Enomoto  <atsushi@ximian.com>
228         * DefaultTraceListener.cs : implemented AssertUiEnabled using MWF.
230 2007-08-01  Atsushi Enomoto  <atsushi@ximian.com>
232         * CounterSample.cs : implemented missing 2.0 equality stuff.
233         * CounterSampleCalculator.cs : static in 2.0.
235 2007-07-24 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
237         * Process.cs: use the default encoding or the windows input/output
238         encodings for the process input/output/error streams. Bug #80838 fixed.
240 2007-07-14 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
242         * Process.cs: don't send empty lines that are not in the input. Fixes
243         bug #79529.
245 2007-07-11  Ankit Jain  <jankit@novell.com>
247         * ProcessStartInfo.cs (WorkingDirectory.set): Don't set
248         working_directory to null.
250 2007-05-18  Atsushi Enomoto  <atsushi@ximian.com>
252         * TraceSourceInfo.cs : new class for storing configuration data.
253         * TraceSource.cs : TraceEventCache arguments should be null (they are
254           nullable). Use TraceSourceInfo above.
255         * DiagnosticsConfigurationHandler.cs : removed hack to store listeners
256           in named sources, not traceimpl. Create TraceSource objects from
257           configuration data.
259 2007-05-18  Marek Safar  <marek.safar@gmail.com>
261         * DiagnosticsConfigurationHandler.cs: Fixed 1.1 build.
263 2007-05-18  Atsushi Enomoto  <atsushi@ximian.com>
265         * XmlWriterTraceListener.cs : open file in shared r/w mode.
266         * DiagnosticsConfigurationHandler.cs : process <sharedListeners>
267           elements first, so that named listeners work fine.
268         * EventLogTraceListener.cs : added 2.0 stubs.
269         * CorrelationManager.cs : removed todo.
271 2007-05-18  Atsushi Enomoto  <atsushi@ximian.com>
273         * TraceListener.cs : in TraceTransfer(), use TraceEvent() (some
274           derived classes depend on this change).
275         * DelimitedListTraceListener.cs : implemented.
277 2007-05-18  Atsushi Enomoto  <atsushi@ximian.com>
279         * EventLogPermissionAccess.cs ProcessPriorityClass.cs
280           ProcessWindowStyle.cs ThreadWaitReason.cs TraceImpl.cs
281           Trace.cs ThreadPriorityLevel.cs EventLogEntryType.cs
282           PerformanceCounterPermissionAccess.cs PerformanceCounterType.cs
283           TraceListener.cs ThreadState.cs : cosmetic API fixes.
284         * SwitchAttribute.cs : implemented GetAll().
286 2007-05-17  Atsushi Enomoto  <atsushi@ximian.com>
288         * TraceOptions.cs : new enum.
289         * TraceListener.cs : support TraceOutputOptions. Fixed missing
290           NET_2_0 condition in TARGET_JVM section.
291         * TraceSwitch.cs, BooleanSwitch.cs :
292           Added missing constructors and OnValueChanged().
293         * Trace.cs, TraceImpl.cs :
294           Added CorrelationManager and UseGlobalLock.
295         * TraceEventCache.cs : initialize property values at construction.
296         * Switch.cs : added XmlIgnore on Attributes.
298 2007-05-15 Adar Wesley <adarw@mainsoft.com>
300         * Trace.cs: added missing method Refresh.
302 2007-05-14  Atsushi Enomoto  <atsushi@ximian.com>
304         * EventTypeFilter.cs
305           TraceFilter.cs
306           SourceFilter.cs
307           SwitchLevelAttribute.cs
308           DelimitedListTraceListener.cs
309           SwitchAttribute.cs : new files in 2.0.
310         * DiagnosticsConfigurationHandler.cs : partial support for named
311           shared listeners.
312         * XmlWriterTraceListener.cs : cosmetic corcompare fixes. Added
313           missing todos.
314         * TraceListener.cs : added missing 2.0 stuff. Implemented Filter.
315         * DefaultTraceListener.cs : trivial ComVisible fix.
317 2007-05-10  Atsushi Enomoto  <atsushi@ximian.com>
319         * TextWriterTraceListener.cs : open log file in readwrite share mode.
320           This fixes bug #81296.
322 2007-05-08 Igor Zelmanovich <igorz@mainsoft.com>
324         * TraceImpl.cs:
325         * TraceListener.cs:
326         for TARGET_JVM used Thread Local Storage istead 
327         Thread-Relative Static Fields 
329 2007-05-02  Jonathan Chambers  <joncham@gmail.com>
331         * Stopwatch.cs : Implement high performance stopwatch on windows.
333 2007-04-19  Atsushi Enomoto  <atsushi@ximian.com>
335         * XmlWriterTraceListener.cs : new file, implementated.
336         * TraceListener.cs : implemented 2.0 members.
338 2007-03-04  Vladimir Krasnov  <vlaimdirk@mainsoft.com>
340         * DiagnosticsConfigurationHandler.cs: removed configuration init in
341         TARGET_JVM since not supported
343 2007-02-02  Gert Driesen  <drieseng@users.sourceforge.net>
345         * EventLogImpl.cs: When no log name is specified, return zero-length
346         string for LogDisplayName.
348 2007-01-28 Ilya Kharmatsky <ilyak -at- mainsoft.com>
350         * TraceEventCache.jvm.cs: added as a stub class.
352 Tue Jan 23 17:19:13 CET 2007 Paolo Molaro <lupus@ximian.com>
354         * ProcessStartInfo.cs: put the fields in the order expected
355         by the runtime code.
357 2007-01-18  Atsushi Enomoto  <atsushi@ximian.com>
359         * Switch.cs : added missing .ctor(), Attributes, Value, 
360           GetSupportedAttributes() and OnValueChanged().
361         * DiagnosticsConfigurationHandler.cs : added some hacky handler for
362           new "sources" element. Don't wrap another ConfigurationException.
363         * TraceListener.cs : added missing trace methods.
364         * TraceSource.cs, SourceLevels.cs, CorrelationManager.cs,
365           TraceEventCache.cs, TraceEventType.cs, SourceSwitch.cs:
366           added missing 2.0 stuff, mostly just stubs.
368 2007-01-12  Miguel de Icaza  <miguel@novell.com>
370         * Trace.cs: Add a number of 2.0 overloads.
372 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
374         * Process.cs: Allow GetProcesses and GetProcessById overloads with 
375         machine name to work for local machine.
377 2006-12-29  Robert Jordan  <robertj@gmx.net>
379         * TraceImpl.cs (Assert): Include line numbers in the stack trace
380         emitted by Assert (). Fixes bug #80400.
382 Thu Dec 14 20:24:09 CET 2006 Paolo Molaro <lupus@ximian.com>
384         * Process.cs: if a process object is restarted, close the
385         previous process handle (bug #80143).
387 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
389         * Process.cs: the Process returned by the static Start method never had
390         the right ProcessStartInfo. Fixes bug #80019.
392 2006-10-13  Atsushi Enomoto  <atsushi@ximian.com>
394         * DiagnosticsConfigurationHandler.cs : be more skeptic on
395           broken configuration file.
397 2006-09-28 Andrew Skiba <andrews@mainsoft.com>
399         * DefaultTraceListener.cs: TARGET_JVM
401 2006-09-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
403         * Process.cs: fix operation number to be 8. The other one was working
404         because the default is to wait for input on the file descriptor.
406 2006-09-05  Gert Driesen  <drieseng@users.sourceforge.net>
408         * Win32EventLog.cs: Removed workarounds for bug #79152 and bug #79117
409         now that these have been fixed. Release unmanaged memory that was
410         allocated for replacement strings.
412 2006-08-27  Gert Driesen  <drieseng@users.sourceforge.net>
414         * NullEventLog.cs: Added dummy GetLogNames implementation.
415         * EventLogImpl.cs: Moved GetEventLogs implementation to base class.
416         Added abstract GetLogNames method. Added ValidateCustomerLogName
417         method which should be called by eventlog providers when creating a
418         new log to ensure the significant part of the log name is unique, does
419         not match any of the special log names and does not match an exist event
420         source.
421         * Win32EventLog.cs: Validate customer log name when creating new log.
422         Moved GetEventLogs implementation to base class. Added GetLogNames
423         method.
424         * LocalFileEventLog.cs: Merged CreateLogStore into CreateEventSource.
425         Validate customer log name when creating new log. Moved GetEventLogs
426         implementation to base class. Added GetLogNames method.
428 2006-08-26  Gert Driesen  <drieseng@users.sourceforge.net>
430         * Win32EventLog.cs: Fixed error messages. Use RegisterEventSource
431         pinvoke when opening eventlog for writing entries.
433 2006-08-26  Gert Driesen  <drieseng@users.sourceforge.net>
435         * Win32EventLog.cs: Added and documented workarounds for bug #79117
436         and bug #79152.
438 2006-08-25  Gert Driesen  <drieseng@users.sourceforge.net>
440         * LocalFileEventLog.cs: When event log store does not exist, then we
441         do not need to perform a case-insensitive lookup of the log name.
443 2006-08-20  Gert Driesen  <drieseng@users.sourceforge.net>
445         * EventLog.cs: Removed namespace import.
446         * EventInstance.cs: Added range checks and check whether specified
447         entry type is defined.
449 2006-08-20  Gert Driesen  <drieseng@users.sourceforge.net>
451         * EventLogEntry.cs: Added InstanceId property (2.0 only). Moved
452         Obsolete attribute to correct property.
453         * EventSourceCreationData.cs: Updated copyright. For internal ctor,
454         set log name to "Application" if value is null or zero-length string.
455         * EventLogImpl.cs: EventImpl now acts as base class for event log 
456         implemenations.
457         * NullEventLog.cs: Modified to implement new abstract methods of base
458         class. Removed factory class.
459         * EventLog.cs: EventLog implementation that delegates just about 
460         everything to individual eventlog providers. To specify the event log
461         implementation to use, the MONO_EVENTLOG_TYPE environment variable can
462         be used. Possible values are:
463         - win32 : read/write entries using the native win32 eventlog
464         - local[:path] : read/write entries as files to a local directory
465         - null : silently ignore all entries
466         The default is "null" on unix (and versions of Windows before NT,
467         meaning Windows 98, ...), and "win32" on Windows NT (and higher).
468         When "the local" implementation is used, the directory in which to 
469         store the event logs, event sources and entries can be specified as 
470         part of MONO_EVENTLOG_TYPE environment variable using the syntax 
471         "local:<path>" (eg. local:/home/myuser/mono/eventlog).
472         * LocalFileEventLog.cs: Event log implementation which uses a local
473         file store. The directory to use for persistence can be specified
474         as part of the MONO_EVENTLOG_TYPE environment variable (see above).
475         If that directory is not explicitly set, then the following directory
476         will be used for storing eventlog entries:
477         - windows       : %APPDATA%\mono\eventlog
478         - unix          : /var/lib/mono/eventlog
479         On unix, the directory permission for individual eventlog log 
480         directories will be set to 777 (with +t bit) allowing everyone to
481         read and write eventlog entries while only allowing entries to be
482         deleted by the user(s) that created them.
483         Format of log files was modified to allow it contain all necessary
484         information for an event log entry.
485         * Win32EventLog.cs: Event log implementation for Windows NT and 
486         higher which uses the Win32 native event log for reading/writing
487         eventlog entries, and which uses the registry to store event log and
488         event source registration information.
489         * EventLogEntryCollection.cs: Delegate implementation to event log
490         implementation. Use lazy init for enumerating entries. Cache current
491         item in 2.0 profile.
493 2006-08-14  Atsushi Enomoto  <atsushi@ximian.com>
495         * LocalFileEventLog.cs : change lengthy environment variable name.
496           MONO_LOCAL_EVENTLOG_PATH -> MONO_EVENTLOG_PATH.
498 2006-08-14  Atsushi Enomoto  <atsushi@ximian.com>
500         * EventLogImpl.cs, EventLogEntryCollection.cs, EventLog.cs :
501           some rework to support actual event log implementations.
502         * NullEventLog.cs, LocalFileEventLog.cs :
503           new files. The former (default) implementation does nothing for
504           any event log features. The latter implements local file based
505           event logs.
507 2006-08-14  Atsushi Enomoto  <atsushi@ximian.com>
509         * UnixEventLog.cs, EventLogEntry.cs, EventSourceCreationData.cs,
510           EventLogImpl.cs, Win32EventLog.cs, EventLogEntryCollection.cs,
511           EventLog.cs:
512           Reverted previous two changes that does not work at all.
514 2006-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
516         * EventLog.cs: For now, Use null implementation.
518 2006-08-11  Gert Driesen  <drieseng@users.sourceforge.net>
520         * EventLogEntry.cs: Added InstanceId property (2.0 only). Moved
521         Obsolete attribute to correct property.
522         * EventSourceCreationData.cs: Updated copyright. For internal ctor,
523         set log name to "Application" if value is null or zero-length string.
524         * EventLogImpl.cs: EventImpl now acts as base class for event log 
525         implemenations. Added NullEventLog implementation, which is not used
526         at the moment.
527         * EventLog.cs: EventLog implementation that uses registry for
528         keeping track of logs and sources to match .NET (and Windows). When
529         running on Windows NT (and higher), event entries are written to
530         the native win32 event log.  Reading event entries is not yet working
531         for Windows. On linux, we use a local file store (based on patch by 
532         Atsushi).
533         * UnixEventLog.cs: Event log implementation for linux which uses a
534         local file store.
535         * Win32EventLog.cs: Event log implementation for Windows NT and 
536         higher which uses the Win32 native event log.
537         * EventLogEntryCollection.cs: Delegate implementation to event log
538         implemenation. Use lazy init for enumerating entries.
540 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
542         * Process.cs: reset the 'start' time if we wait for stdout reading to
543         be completed.
545 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
547         * Process.cs: add support for 2.0 asynchronous reads on stdout and
548         stderr.
550 2006-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
552         * EventSourceCreationData.cs: Marked ctor internal, and removed ctor.
553         Throw ArgumentOutOfRangeException if negative value for CategoryCount
554         is set.
556 2006-08-09  Gert Driesen  <drieseng@users.sourceforge.net>
558         * EventInstance.cs: Added 2.0 class.
559         * EventSourceCreationData.cs: Added 2.0 class.
560         * OverflowAction.cs: Added 2.0 enum.
562 2006-07-31  Sebastien Pouliot  <sebastien@ximian.com>
564         * EventLogEntry.cs: Add a linkdemand for unrestricted on class.
565         * EventLogTraceListener.cs: Add a linkdemand for unrestricted on class
566         * FileVersionInfo.cs: Add a linkdemand for unrestricted on class. Add
567         an imperative demand for FileIOPermission.Read on GetVersionInfo 
568         method. Change ToString method to use a StringBuilder.
569         * PerformanceCounterCategory.cs: Add a linkdemand for unrestricted on
570         class.
571         * PerformanceCounterManager.cs: Add a linkdemand for unrestricted on 
572         class. Add [Obsolete] for NET_2_0 profile.
573         * Process.cs: Add a linkdemand and an inheritancedemand for 
574         unrestricted on class.
575         * ProcessStartInfo.cs: Add a linkdemand for unrestricted on class.
577 2006-07-16  Andrew Skiba <andrews@mainsoft.com>
579         * Process.cs: throw FileNotFoundException earlier; give more
580         diagnostics.
582 2006-05-16  Dick Porter  <dick@ximian.com>
584         * Process.cs: Dispose the handle from a destructor too
586 2006-04-04  Atsushi Enomoto  <atsushi@ximian.com>
588         * Stopwatch.cs:
589           Zoltan was quicker to add it, here I put my implementation ;-)
590         * Process.cs :
591           Added some missing long members (not implemented anyways).
592         * DataReceivedEventHandler.cs DataReceivedEventArgs.cs :
593           added new 2.0 types.
595 2006-04-01  Zoltan Varga  <vargaz@gmail.com>
597         * Stopwatch.cs: New file.
599 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
601         * Debug.cs: Add net 2.0 Print methods.
603 2006-03-03  Dick Porter  <dick@ximian.com>
605         * Process.cs: Close redirected pipes on errors.  Fixes bug 77514.
607 2006-01-12  Ben Maurer  <bmaurer@andrew.cmu.edu>
609         * ConsoleTraceListener.cs: New 2.0 class
611 2005-11-17  Dick Porter  <dick@ximian.com>
613         * Process.cs: Split Start_common into Start_shell and
614         Start_noshell, which call ShellExecuteEx and CreateProcess
615         respectively.  Fixes bug 76670.
617 2005-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
619         * Process.cs: deal with the fact that someone can enable raising events
620         and/or registed a Exited delegate before and *after* Start is called for
621         the process. Only queue the exit callback in the threadpool when it's
622         possible and requested. Fixes bug #76129.
624 2005-08-09  Gert Driesen <drieseng@users.sourceforge.net>
626         * EventLog.cs: Fixed Designer attribute to match MS.NET.
627         * ICollectData.cs: Added marshalling attribute to match MS.NET.
628         * PerformanceCounter.cs: Fixed Designer attribute to match MS.NET.
629         * Process.cs: Fixed Designer attribute to match MS.NET, modified
630         * ProcessModule.cs: Fixed Designer attribute to match MS.NET.
631         * ProcessThread.cs: Fixed Designer attribute to match MS.NET.
632         DesignerSerializationVisibility on StartInfo to match MS.NET, changed
633         Category attribute on Exited event to match MS.NET.
635 2005-06-09  Gert Driesen <drieseng@users.sourceforge.net>
637         * TraceImpl.cs: Adjust internal indentlevel and indentsize before 
638         passing on to listeners. Fixes some test failures.
640 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
642         * DefaultTraceListener.cs: s/MONO_TRACE/MONO_TRACE_LISTENER/. The
643         runtime uses MONO_TRACE too...
645 2005-05-31  Sebastien Pouliot  <sebastien@ximian.com>
647         * PerformanceCounterPermissionEntry.cs: Added more 2.0 validations for
648         machine names and PerformanceCounterPermissionAccess.
650 2005-02-22 Jonathan Pryor  <jonpryor@vt.edu>
652         * TraceImpl.cs: More Thread-safety fixes.  I have to lock on
653           Listeners.SyncRoot as we're traversing the collection and can't let the
654           collection change from underneath us while we're iterating over it
655           (alternately, we could clone the collection and iterate over the clone
656           without having locking issues -- assuming we had a lock-free clone -- 
657           but this would kill the GC).  Fixes 69964.  Only define lock_ if we're 
658           using the lock-free initialization routine; it's not used otherwise.
660 2005-01-18 Jonathan Pryor  <jonpryor@vt.edu>
662         * DiagnosticsConfigurationHandler.cs (DiagnosticsConfiguration): 
663           Use a lock-free algorithm for creating the settings information.
664         * TraceImpl.cs (InitOnce): Use a lock-free algorithm for creating the
665           listeners collection and initializing the world.
667 2005-01-18 Jonathan Pryor  <jonpryor@vt.edu>
669         * DiagnosticsConfigurationHandler.cs (DiagnosticsConfiguration): Don't 
670           read the .config file from the static ctor (again), as if it fails we'll 
671           get a TypeLoadException -- bad!  Instead, lazy-read the .config file.
672         * DiagnosticsConfigurationHandler.cs (DiagnosticsConfigurationHandler): 
673           Require that the /switch/add/@value attribute contains only numeric values.
674         * TraceImpl.cs: Don't initialize everything in the static ctor, as if it
675           fails (due to an invalid .confg file) we get a TypeLoadException, while
676           .NET generates a ConfigurationException.  Instead, initialize everything
677           the first time the Listeners property is accessed, which allows the static
678           ctor to run without chance of failure, avoiding the TypeLoadException.
679         * TraceListenerCollection.cs: This should be thread-safe, as it's accessible
680           from a static member of TraceImpl (available through the public Debug and 
681           Trace classes).
682         * Switch.cs: Leave the original switch value alone.  If it isn't valid 
683           (i.e. numeric), the DiagnosticsConfigurationHandler will catch it.
685 2005-01-17 Jonathan Pryor  <jonpryor@vt.edu>
687         * DiagnosticsConfigurationHandler.cs: The /switch/add/@value attribute 
688           isn't optional under .NET 1.1, so make sure it exists.
690 2005-01-13 Jonathan Pryor  <jonpryor@vt.edu>
692         * DiagnosticsConfigurationHandler.cs: Make DiagnosticsConfiguration.Settings
693           thread-safe (double-checked locking isn't thread safe on .NET without
694           using a volatile variable, and setting the variable in the static
695           constructor is easier anyway).
696         * Switch.cs (GetConfigFileSetting): If the setting is non-numeric, set the
697           attribute value to the string "0".  This is apparently what .NET 1.1 does,
698           and allows the SwitchTest NUnit test to work w/o failures.
700 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
702         * Process.cs: always pass the same arguments to the runtime.
704 2004-09-11  Sebastien Pouliot  <sebastien@ximian.com>
706         * EventLogPermission.cs: Completed implementation.
707         * EventLogPermissionAccess.cs: Fixed enum values.
708         * EventLogPermissionEntry.cs: Added validation for machine names.
709         * EventLogPermissionEntryCollection.cs: Added synchronization
710         of entries with the base permission class.
711         * PerformanceCounterPermission.cs: Completed implementation.
712         * PerformanceCounterPermissionAccess.cs: Fixed enum values.
713         * PerformanceCounterPermissionEntry.cs: Added validations for machine
714         and category names.
715         * PerformanceCounterPermissionEntryCollection.cs: Added synchronization
716         of entries with the base permission class.
718 2004-09-10  Sebastien Pouliot  <sebastien@ximian.com>
720         * EventLogPermission.cs: Fixed initialization (TagNames and
721         PermissionAccessType).
722         * EventLogPermissionAccess.cs: Added new enums for NET_2_0 and added 
723         [Obsolete] to some existing elements.
724         * EventLogPermissionAttribute.cs: Added missing validation to property
725         MachineName. Fixed changes for NET_2_0.
726         * PerformanceCounterPermission.cs: Fixed initialization (TagNames and
727         PermissionAccessType).
728         * PerformanceCounterPermissionAccess.cs: Added new enums for NET_2_0
729         and added [Obsolete] to some existing elements.
730         * PerformanceCounterPermissionAttribute.cs: Added missing validations
731         to properties (Path, MachineName). Fixed changes for NET_2_0.
733 2004-09-07  Dick Porter  <dick@ximian.com>
735         * Process.cs: Throw documented exceptions when getting stdin,
736         stdout or stderr and they haven't been redirected.  Check that
737         CreatePipe didn't fail, throw exceptions if it did.  Close
738         redirected streams when the process is disposed, rather than rely
739         on the GC disposing them later.  Makes timeline much happier,
740         because it could run out of file descriptors between GC
741         collections.
743 2004-09-06  Dick Porter  <dick@ximian.com>
745         * Process.cs: Make Dispose() actually dispose things.
747 2004-06-24  Atsushi Enomoto  <atsushi@ximian.com>
749         * Process.cs : quick fix for UseShellExecute=false on windows. See
750           the code comment.
752 2004-06-17  Lluis Sanchez Gual  <lluis@ximian.com>
754         * Process.cs: Added missing check in HasExited property.
756 2004-05-20  Gert Driesen (drieseng@users.sourceforge.net)
758         * EventLogPermissionAttribute.cs:
759         * PerformanceCounterPermissionAttribute.cs: adjust AllowMultiple
760         and Inherited to match .NET
762 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
764         * Process.cs: separate the command and the arguments when calling
765         Start_internal.
767 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
769         * Process.cs: redirecting I/O is not permitted if UseShellExecute is
770         true. Also throw if FileName is null.
772 2004-04-06  Lluis Sanchez Gual  <lluis@ximian.com>
774         * DiagnosticsConfigurationHandler.cs: If initializeData is provided,
775         use the constructor that only takes one string as parameter to
776         construct the listener. The name is set using the Name property, not the
777         constructor.
778         
779         * TextWriterTraceListener.cs: In Write*, do nothing if no writer was 
780         provided.
782 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
784         * Process.cs: use the ISynchronizeInvoke object to invoke the event.
785         Implemented Close, CloseMainWindow and Kill.
787 2004-03-23 Ben Maurer  <bmaurer@users.sourceforge.net>
789         * Switch.cs: Don't throw when there is no switches section.
791 2004-03-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
793         * Process.cs: support EnableRaisingEvents + Exited event.
795 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
797         * Process.cs: patch by Gert Driesen that fixes WaitForExit when the
798         timeout is int.MaxValue.
800 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
802         * Process.cs: added environment variables setting support and also
803         send useShellExecute to the runtime.
805         * ProcessStartInfo.cs: support EnvironmentVariables.  MS uses
806         StringDictionary, which turns keys into lowercase. We don't do that.
808 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
810         * Process.cs: ExitCode and ExitTime check that the process is finished.
812 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
814         * Process.cs: if there's an error when starting the process, the 'pid'
815         field contains the GetLastError code. Use that for the Win32Exception.
817 2003-12-06  Martin Baulig  <martin@ximian.com>
819         * DefaultTraceListener: Don't use `where' in variable names.
821 2003-11-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
823         * ICollectData.cs: Fixed signature
825 2003-11-12  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
827         * ICollectData.cs: Added missing attribute
829 2003-07-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
831         * SRDescriptionAttribute.cs: Moved to System directory
833 2003-07-21  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
835         * EventLog.cs: Implementation handling
836         * EventLogImpl.cs: Added, contains an platform independent empty implementation
837         for EventLog
839 2003-07-18  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
841         * AlphabeticalEnumConverter.cs: Added
842         * EventLogEntry.cs: Implemented
843         * EventLogPermissionEntryCollection.cs: Fixed signature and implementation of indexer
844         * EventLogTraceListener.cs: Fixed signature
845         * PerformanceCounter.cs: Added missing attribute
846         * PerformanceCounterType.cs: Added missing attribute
847         * SRDescriptionAttribute.cs: Added and implemented
849 2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
851         * CounterCreationData.cs:
852         * EventLog.cs:
853         * EventLogEntry.cs:
854         * PerformanceCounter.cs:
855         * Process.cs:
856         * ProcessModule.cs:
857         * ProcessStartInfo.cs:
858         * ProcessThread.cs: Reworked attributes based on the new Consts scheme
860 2003-07-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
862         * PerformanceCounterCategory.cs: Fixed signatures
864 2003-07-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
866         * PerformanceCounter.cs: Implemented or implementation added
868 2003-07-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
870         * DiagnosticsConfigurationHandler.cs: Removed a never used variable
871         * EventLog.cs: Small update to prevent a warning
872         * EventLogPermission.cs: Implemented or implementation added
873         * EventLogPermissionAttribute.cs: Implemented or implementation added
874         * EventLogPermissionEntry.cs: Implemented or implementation added
875         * EventLogPermissionEntryCollection.cs: Implemented or implementation added
876         * EventLogTraceListener.cs: Implemented or implementation added
877         * PerformanceCounterManager.cs: Implemented or implementation added
878         * PerformanceCounterInstaller.cs: Made internal
879         * PerformanceCounterCategory.cs: Implemented few members
880         * PerformanceCounterPermission.cs: Implemented or implementation added
881         * PerformanceCounterPermissionAttribute.cs: Implemented or implementation added
882         * PerformanceCounterPermissionEntry.cs: Implemented or implementation added
883         * PerformanceCounterPermissionEntryCollection.cs: Implemented or implementation added
884         
885 2003-07-07  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
887         * EventLog.cs: Removed unneccesary attribute according to corecompare
888         * EventLogEntry.cs: Removed unneccesary attribute according to corecompare
889         * Process.cs: Removed unneccesary attributes according to corecompare, added attribute
890         * ProcessModule.cs: Removed unneccesary attribute according to corecompare
891         * ProcessStartInfo.cs: Removed unneccesary attribute according to corecompare
892         * ProcessThread.cs: Removed unneccesary attribute according to corecompare, fixed signature
894 2003-07-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
896         * InstanceDataCollectionCollection.cs: Corrected wrong signature
897         * EventLog.cs: Missing attributes added, redirected some class members
898         * EventLogEntry.cs: Missing attributes added
899         * EventLogInstaller.cs: Made internal
900         
901 2003-07-02  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
903         * CounterCreationData.cs: Added missing attributes
904         * CounterSample.cs: Implemented missing rest, fixed signature
905         * CounterSampleCalculator.cs: Added private constructor, redirected function
906         * Process.cs: Added attributes, added event mechanism
907         * ProcessModule.cs: Added missing attributes
908         * ProcessModuleCollection.cs: Redone using the already inherited-from ArrayList. Simplifies this a LOT
909         * ProcessStartInfo.cs: Added missing attributes, moved internal fields to the begining of the file, restyling
910         * ProcessThread.cs: Added missing attributes, added pseudo constructor
911         * ProcessThreadCollection.cs: Implemented
912         * PerformanceCounterPermission.cs: Fixed typo in class name
913         * PerformanceCounterPermissionAccess.cs: Added attributes, fixed wrong member
914         
915 2003-03-19  Dick Porter  <dick@ximian.com>
917         * Process.cs: Implement HasExited, fixes bug 39267
919 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
921         * Process.cs: throw an exception when the executable cannot be found.
923 2002-12-20  Jonathan Pryor <jonpryor@vt.edu>
924         * DiagnosticsConfigurationHandler.cs: 
925           - Don't assume that optional attributes are always present
926           - <assert/> can't have any child nodes
927           - Change in semantics: if the attribute isn't present,
928             GetAttribute() returns null, not "".  This allows us to
929             differentiate between an attribute not being present and an
930             attribute with an empty value.
931           - Translate exceptions if a TraceListener type is invalid
933 2002-12-19  Jonathan Pryor <jonpryor@vt.edu>
934         * TraceListenerCollection.cs: IndentLevel and IndentSize shouldn't be 
935           hardcoded; they should be set to whatever TraceImpl is using (which
936           in turn may have been set by the .config file, so we should get the
937           user-specified values in added listeners).
938         * TraceListener.cs: Make sure that indents are initially written.  This 
939           allows code that uses Trace.Indent() before a Trace.WriteLine() to be 
940           indented properly.
941         * TraceImpl.cs: provide a static constructor to explicitly specify the
942           ordering of initialization, in particular the ordering of
943           TraceImpl.Listeners and the reading of the .config file (by
944           accessing DiagnosticsConfiguration.Settings).  This (hopefully)
945           ensures that the Listeners collection is initialized before the
946           .config file is read in, as the DiagnosticsConfigurationHandler will
947           directly modify the listeners collection.
948           The DiagnosticsConfigurationHandler assumes this so that it can
949           <add/> and <remove/> trace listeners and set the logfile for the
950           DefaultTraceListener.
953 2002-12-18  Jonathan Pryor <jonpryor@vt.edu>
954         * BooleanSwitch.cs: Complete re-write.  It works now.
955         * DefaultTraceListener.cs:
956           - Use `const' strings, so I don't worry about copy/paste errors
957           - Give `AssertUiEnabled' an actual backing member
958         * DiagnosticsConfigurationHandler.cs: To avoid race conditions, let the
959           configuration handler set .config-specified properties on
960           DefaultTraceListener (AssertUiEnabled, LogFileName) and TraceImpl
961           (AutoFlush, IndentSize).
962         * Switch.cs: Near complete re-write.  Actually works, and is (should be)
963           comformant with .NET behavior.  Changed member names because they
964           were confusing me.  (Yes, that doesn't say much about my memory.)
965         * TextWriterTraceListener.cs: Append text to already existing files,
966           don't overwrite them.
967         * TraceImpl.cs:
968           - Added private destructor, to ensure no instances are created.
969           - Move members declarations to be closer to each other.
970         * TraceSwitch.cs: Complete re-write.  It works now.
972 2002-12-17  Jonathan Pryor <jonpryor@vt.edu>
973         * DiagnosticsConfigurationHandler.cs: Implement so that .config files
974         support <system.diagnostics> sections.
976 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
978         * DefaultTraceListener.cs: now OutputDebugStringW is called from an
979         internal call (update your runtime!). No more warnings in linux.
981 2002-10-31  Dick Porter  <dick@ximian.com>
983         * Process.cs: MonoIO methods now have an error parameter
985 2002-10-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
987         * DefaultTraceListener.cs: changed OutputDebugString to
988         OutputDebugStringW (no more warnings under windows). Also a few style
989         fixes.
991 2002-10-23  Dick Porter  <dick@ximian.com>
993         * Process.cs: Redirected standard input needs to have AutoFlush set
995 2002-09-27  Dick Porter  <dick@ximian.com>
997         * Process.cs: Implemented {get_,set_}{Min,Max}WorkingSet,
998         ProcessName, GetProcessById, GetProcesses, GetProcessesByName.
999         Pass the working directory to Start.  Pass the program and args in
1000         one string to be used with the second arg of CreateProcess, so it
1001         will search the path.
1003 2002-09-19  Nick Drochak <ndrochak@gol.com>
1005         * TraceImpl.cs: Remove debug prints
1007 2002-09-19  Nick Drochak <ndrochak@gol.com>
1009         * TraceListenerCollection.cs: Set Indet level and size to default 
1010         values.  The values from TraceImpl might have been changed.
1012 2002-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1014         * Process.cs:
1015         * TextWriterTraceListener.cs: IDisposable fixes.
1017 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1019         * Process.cs: class status based fixes.
1021 2002-07-20  Dick Porter  <dick@ximian.com>
1023         * Process.cs: Implement file handle redirection
1025 2002-07-13  Jonathan Pryor <jonpryor@vt.edu>
1026         * CounterCreationData.cs: Implemented
1027         * CounterCreationDataCollection.cs: Implemented
1028         * CounterSample.cs: Stubbed Out
1029         * CounterSampleCalculator.cs: Stubbed Out
1030         * InstanceData.cs: Implemented
1031         * InstanceDataCollection.cs: Implemented
1032         * InstanceDataCollectionCollection.cs: Implemented
1033         * MonitoringDescriptionAttribute.cs: Implemented
1034         * PerformanceCounter.cs: Stubbed Out
1035         * PerformanceCounterCategory.cs: Stubbed Out
1036         * PerformanceCounterInstaller.cs: Stubbed Out
1037         * PerformanceCounterManager.cs: Stubbed Out
1038         * PerformanceCounterPermission.cs: Stubbed Out
1039         * PerformanceCounterPermissionAccess.cs: Implemented
1040         * PerformanceCounterPermissionAttribute.cs: Stubbed Out
1041         * PerformanceCounterPermissionEntry.cs: Stubbed Out
1042         * PerformanceCounterPermissionEntryCollection.cs: Implemented
1043         * PerformanceCounterType.cs: Implemented
1046 2002-06-25  Dick Porter  <dick@ximian.com>
1048         * Process.cs: Process forking and waiting, and some support functions
1050         * ProcessStartInfo.cs: Implemented the bits needed for basic
1051         Process forking
1053         * ProcessModule.cs: Implemented
1055         * ProcessModuleCollection.cs: Mostly implemented
1057         * FileVersionInfo.cs: Implemented
1059 2002-06-16  Jonathan Pryor <jonpryor@vt.edu>
1060         * ICollectData.cs: Implemented
1061         * TraceImpl.cs: Setting IndentLevel, IndentSize should change the
1062                 corresponding properties on all current TraceListeners.
1063                 Also, to answer the FIXME message: Yes, the properties in TraceListener
1064                 need to be [ThreadStatic] as well.
1065         * TraceListenerCollection.cs: When adding a TraceListener, the TraceListener
1066                 should have its properties set to the current TraceImpl property values.
1067         * TraceListener.cs: Make indentSize, lndentLevel [ThreadStatic].
1069 2002-06-09  Jonathan Pryor <jonpryor@vt.edu>
1070         * EntryWrittenEventArgs.cs: Implemented
1071         * EntryWrittenEventHandler.cs: Implemented
1072         * EventLog.cs: Stubbed out
1073         * EventLogEntry.cs: Stubbed out
1074         * EventLogEntryCOllection.cs: Implemented.
1075         * EventLogEntryType.cs: Implemented
1076         * EventLogInstaller.cs: Stubbed out
1077         * EventLogPermission.cs: Stubbed out
1078         * EventLogPermissionAccess.cs: Implemented
1079         * EventLogPermissionAttribute.cs: Stubbed out
1080         * EventLogPermissionEntry.cs: Stubbed out
1081         * EventLogPermissionEntryCollection.cs: Stubbed out
1082         * EventLogTraceListener.cs: Stubbed out
1084 2002-05-29  Jonathan Pryor <jonpryor@vt.edu>
1085   * DefaultTraceListener.cs: Implemented MONO_TRACE support
1087 2002-05-27  Jonathan Pryor <jonpryor@vt.edu>
1088   * Moved public API documentation for the following files to the
1089     /mcs/docs/apidocs/xml/en/System.Diagnostics directory:
1090     - Debug.cs
1091     - DefaultTraceListener.cs
1092     - DiagnosticsConfigurationHandler.cs
1093     - Switch.cs
1094     - TextWriterTraceListener.cs
1095     - Trace.cs
1096     - TraceLevel.cs
1097     - TraceListener.cs
1098     - TraceListenerCollection.cs
1099     - TraceSwitch.cs
1101 2002-04-10  Jonathan Pryor <jonpryor@vt.edu>
1103         * TraceListenerCollection.cs: Corrected indexer property to provide the
1104                 correct return value and implement the IList indexer property correctly.
1106 2002-04-07  Jonathan Pryor <jonpryor@vt.edu>
1108         * TraceListener.cs: Fix stack overflow bug
1109         * DefaultTraceListener.cs: Implement log file support
1111 2002-04-04  Dick Porter  <dick@ximian.com>
1113         * ThreadWaitReason.cs:
1114         * ThreadState.cs:
1115         * ThreadPriorityLevel.cs:
1116         * ProcessWindowStyle.cs:
1117         * ProcessThreadCollection.cs
1118         * ProcessThread.cs:
1119         * ProcessStartInfo.cs:
1120         * ProcessModuleCollection.cs: Stub out more classes needed for Process
1122 2002-03-31  Dick Porter  <dick@ximian.com>
1124         * Process.cs: 
1125         * ProcessPriorityClass.cs: 
1126         * ProcessModule.cs: 
1127         * FileVersionInfo.cs: Stub out classes needed for Process
1129 2002-03-08  Jonathan Pryor <jonpryor@vt.edu>
1131         * Debug.cs: Clean up (lots of code can be shared with Trace.cs, which 
1132                 is why TraceImpl.cs is introduced), "DEBUG" conditional support
1133         * TraceListener.cs: Proper implementation of Dispose pattern;
1134                 implementatino of non-abstract methods in terms of abstract methods
1135         * TraceListenerCollection.cs: check 'object' types before adding
1136         * TextWriterTraceListener.cs: properly implement Dispose pattern;
1137                 handle NeedIndent and WriteIndent
1138         * Trace.cs: new file; provides Trace functionality, "TRACE" conditional
1139                 support
1140         * DefaultTraceListener.cs: new file; the default trace listener
1142 2002-01-17  Miguel de Icaza  <miguel@ximian.com>
1143         * TraceListenerCollection.cs: Remove Warnings.
1145 2002-01-06  Ravi Pratap  <ravi@ximian.com>
1146         * Switch.cs, TraceListenerCollection.cs : Decorate incomplete bits
1147         with the MonoTODO attribute.
1149 2002-01-04  John R. Hicks <angryjohn69@nc.rr.com>
1150         * Added Debug.cs to the build.
1152 2002-01-04  John R. Hicks <angryjohn69@nc.rr.com>
1153         * Added preliminary TraceListenerCollection.cs to the build.
1155 2002-01-04  John R. Hicks <angryjohn69@nc.rr.com>
1156         * Added TraceListener.cs, TextWriterTraceListener.cs, and
1157         DefaultTraceListener.cs to the build and moved them into the
1158         proper assembly.
1160 2002-01-04  John R. Hicks <angryjohn69@nc.rr.com>
1161         * Added DiagnosticsConfigurationHandler.cs to the build.
1163 2001-09-09  Nick Drochak <ndrochak@gol.com>
1164         * BooleanSwitch.cs: Make this class use it's parent class's features.  Namely, use SwitchSetting
1165         so that we can get OnSwitchSettingChanged() to fire for free.
1167 2001-09-09  Nick Drochak <ndrochak@gol.com>
1168         * ChangeLog: added this file
1169         * Switch.cs: call OnSwitchSettingChanged() when the switch setting is, yes you gessed it, changed.