source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet/Sevices/NullLog.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 524 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace IndianHealthService.BMXNet.Services
6{
7 internal class NullLog:Log
8 {
9 public bool IsLogging
10 {
11 get { return false; }
12 set { }
13 }
14
15 public void Log(string aClass, string aCategory, params string[] lines)
16 {
17 }
18
19 public void Log(string aClass, string aCategory, Exception anException, params string[] lines)
20 {
21 }
22
23 }
24}
Note: See TracBrowser for help on using the repository browser.