程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c#日記記載贊助類分享

c#日記記載贊助類分享

編輯:C#入門知識

c#日記記載贊助類分享。本站提示廣大學習愛好者:(c#日記記載贊助類分享)文章只能為提供參考,不一定能成為您想要的結果。以下是c#日記記載贊助類分享正文



public class LogHelper
   {
       private static void Info(string category, int priority, TraceEventType severity, string message)
       {

           IDictionary<string, object> dic = new Dictionary<string, object>();
           dic.Add("屬性:", category);
           dic.Add("內容:", message);

           ICollection<string> coll = new List<string>();
           coll.Add("General");


           LogEntry log = new LogEntry();
           log.Priority = priority;
           log.Severity = severity;

           log.Message = category;//"日記測試";
           log.TimeStamp = DateTime.Now;
           log.ExtendedProperties = dic;//記載額定的信息
           log.Categories = coll;//設置記載的日記類型

           Logger.Write(log);
       }

       public static void Debug(string message)
       {
           Info("Debug", 1, TraceEventType.Information, message);

       }

       public static void DebugFormat(string format, params object[] args)
       {
           Info("Debug", 1, TraceEventType.Information, String.Format(format, args));

       }

       public static void Trace(string message)
       {
           Info("Trace", 1, TraceEventType.Information, message);

       }

       public static void TraceFormat(string format, params object[] args)
       {
           Info("Trace", 1, TraceEventType.Information, String.Format(format, args));

       }

       public static void Error(string message)
       {
           Info("Error", 1, TraceEventType.Error, message);
       }

       public static void ErrorFormat(string format, params object[] args)
       {
           Info("Error", 1, TraceEventType.Error, String.Format(format, args));
       }

       public static void Error(object obj, Exception ex)
       {
           Info("Error", 1, TraceEventType.Error, String.Format("Error Info:{0},{1}", obj, ex.Message));
       }

       //日記記載
       public static void WriteLog(string errorTitle, string properties, string content)
       {
           IDictionary<string, object> dic = new Dictionary<string, object>();
           dic.Add("屬性:", properties);
           dic.Add("內容:", content);


           ICollection<string> coll = new List<string>();
           coll.Add("General");


           LogEntry log = new LogEntry();
           log.Message = errorTitle;//"日記測試";
           log.TimeStamp = DateTime.Now;
           log.ExtendedProperties = dic;//記載額定的信息
           log.Categories = coll;//設置記載的日記類型

           Logger.Write(log);
       }
   }

用法


#region 依據JobNO獲得對應操作人員姓名 EMPLOYEE 表
       /// <summary>
       /// 依據JobNO獲得對應操作人員姓名
       /// </summary>
       /// <param name="jobNo">JobNO</param>
       /// <returns></returns>
       public static string GetManagerNameByjobNo(string jobNo)
       {
           string strSql = "select IN_USER from IMPGTBILL where JOB_NO=@jobNo";
           try
           {
               object temp = SqlHelper.Instance("Conn_GM")
                   .ExecuteScalar(strSql, new[] { new SqlParameter("@jobNo", jobNo) });
               if (temp != null)
               {
                   return temp.ToString();
               }
               return "";
           }
           catch (Exception e)
           {
               LogHelper.ErrorFormat("OrderTitle_DAL.GetManagerNameByjobNo:{0}", e.Message);
               return null;
           }
       }
       #endregion

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved