當前位置: 首頁>>代碼示例>>C#>>正文


C# Log.SetLogValue方法代碼示例

本文整理匯總了C#中System.Log.SetLogValue方法的典型用法代碼示例。如果您正苦於以下問題:C# Log.SetLogValue方法的具體用法?C# Log.SetLogValue怎麽用?C# Log.SetLogValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Log的用法示例。


在下文中一共展示了Log.SetLogValue方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AddLog

 private void AddLog(UDT.CourseInstructor obj, Log.LogAgent agt)
 {
     if (agt != null)
     {
         agt.SetLogValue("課程編號", obj.CourseID.ToString());
         agt.SetLogValue("教師編號", obj.TeacherID.ToString());
         agt.SetLogValue("角色", obj.Role.ToString());
     }
 }
開發者ID:jungfengpaulwang,項目名稱:EMBACore,代碼行數:9,代碼來源:Course_Instructor.cs

示例2: AddLog

 private void AddLog(UDT.AddDropCourse obj, Log.LogAgent agt)
 {
     if (agt != null)
     {
         agt.SetLogValue("課程編號", obj.CourseID.ToString());
         string courseName = "";
         if (this.dicCourses.ContainsKey(obj.CourseID.ToString()))
             courseName = this.dicCourses[obj.CourseID.ToString()].Name;
         agt.SetLogValue("課程名稱", courseName);
         agt.SetLogValue("加/退選", obj.AddOrDrop);
     }
 }
開發者ID:jungfengpaulwang,項目名稱:EMBACore,代碼行數:12,代碼來源:Student_AddDropCourse.cs

示例3: SetLogData

 public static void SetLogData(Log.LogTransfer logTransfer, DAO.StudentFitnessRecord rec)
 {
     // 學年度
     logTransfer.SetLogValue("學年度", rec.SchoolYear.ToString());
     // 測驗日期
     logTransfer.SetLogValue("測驗日期", rec.TestDate.ToShortDateString());
     // 學校類別
     logTransfer.SetLogValue("學校類別", rec.SchoolCategory);
     // 身高
     logTransfer.SetLogValue("身高", rec.Height);
     // 身高常模
     logTransfer.SetLogValue("身高常模", rec.HeightDegree);
     // 體重
     logTransfer.SetLogValue("體重", rec.Weight);
     // 體重常模
     logTransfer.SetLogValue("體重常模", rec.WeightDegree);
     // 坐姿體前彎
     logTransfer.SetLogValue("坐姿體前彎", rec.SitAndReach);
     // 坐姿體前彎常模
     logTransfer.SetLogValue("坐姿體前彎常模", rec.SitAndReachDegree);
     // 立定跳遠
     logTransfer.SetLogValue("立定跳遠", rec.StandingLongJump);
     // 立定跳遠常模
     logTransfer.SetLogValue("立定跳遠常模", rec.StandingLongJumpDegree);
     // 仰臥起坐
     logTransfer.SetLogValue("仰臥起坐", rec.SitUp);
     // 仰臥起坐常模
     logTransfer.SetLogValue("仰臥起坐常模", rec.SitUpDegree);
     // 心肺適能
     logTransfer.SetLogValue("心肺適能", rec.Cardiorespiratory);
     // 心肺適能常模
     logTransfer.SetLogValue("心肺適能常模", rec.CardiorespiratoryDegree);
 }
開發者ID:redolin,項目名稱:K12.Sports.FitnessImportExport,代碼行數:33,代碼來源:Utility.cs


注:本文中的System.Log.SetLogValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。