Exemple #1
0
        /*
         *  Summary:
         *      It provides for the possibility of displaying attachments.
         */
        public void ExitMethod(int MethodOffSet)
        {
            ExitMethodMessage EMM = new ExitMethodMessage();

            EMM._MethodOffset = MethodOffSet + 2;
            EMM.InitializeNewMessage();
            foreach (Destination d in listDestination)
            {
                d.ExitMethod(EMM);
            }
        }
Exemple #2
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;
         }
     }
 }