Ejemplo n.º 1
0
 public void ExitMethod(int MethodOffSet)
 {
   try
   {
     ExitMethodMessage EMM = new ExitMethodMessage();
     EMM._MethodOffset = MethodOffSet + 2;
     EMM.InitializeNewMessage();        
     foreach (Destination d in _Destins)
     {
       d.ExitMethod(EMM);
     }
   }
   finally
   {
     lock(typeof(LogFactory))
     {
       LogFactory.Indent -= 1;
     }
   }
 }
Ejemplo n.º 2
0
 public abstract void ExitMethod(ExitMethodMessage EMM);
Ejemplo n.º 3
0
 public override void ExitMethod(ExitMethodMessage EMM)
 {
   Console.WriteLine("LOG: " + GetIndentString(2) + "<" + EMM.MethodName);  
 }
Ejemplo n.º 4
0
 public override void ExitMethod(ExitMethodMessage EMM)
 {
   Output.WriteLine("{0}{1} <{2}", 
     EMM.UTCTime.ToString("dd-MM-yyyy") + " " + EMM.UTCTime.ToLongTimeString(),
     GetIndentString(1),
     EMM.MethodName);
 }