Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DiagnosticsConfigurationHandler.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f99cd1094c4e3287279c3e7bbe5a3b6143bdb99f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// System.Diagnostics.DiagnosticsConfigurationHandler.cs
//
// Comments from John R. Hicks <angryjohn69@nc.rr.com> original implementation 
// can be found at: /mcs/docs/apidocs/xml/en/System.Diagnostics
//
// Author: 
//	John R. Hicks <angryjohn69@nc.rr.com>
//
// (C) 2002
//
using System;
using System.Configuration;
using System.Xml;

namespace System.Diagnostics
{
	public class DiagnosticsConfigurationHandler :
		IConfigurationSectionHandler
	{
		public DiagnosticsConfigurationHandler()
		{
			
		}
		
		public virtual object Create(
		                             object parent,
		                             object configContext,
		                             XmlNode section)
		{
		    throw new NotImplementedException();                         	
		}
		
		
		~DiagnosticsConfigurationHandler() 
		{
			
		}
	}
}