コード例 #1
0
ファイル: LogWrapper.cs プロジェクト: glitch11/Accelerators
        public LogWrapper(Log log)
        {
            m_log = log;

            incident = new Incident();
            ID incId = new ID();
            incId.id = 0;
            incident.ID = incId;

            contact = new RightNowServiceReference.Contact();
            ID contactId = new ID();
            contactId.id = 0;
            contact.ID = contactId;
        }
コード例 #2
0
        public LogWrapper(Log log)
        {
            m_log = log;

            incident = new Incident();
            ID incId = new ID();

            incId.id    = 0;
            incident.ID = incId;

            contact = new RightNowServiceReference.Contact();
            ID contactId = new ID();

            contactId.id = 0;
            contact.ID   = contactId;
        }
コード例 #3
0
ファイル: DefaultLog.cs プロジェクト: thollu/accelerators
 public void ClickLog(Incident incident = null, RightNowServiceReference.Contact contact = null, string LogMessage = null, string LogNote = null, string source = null, int timeElapsed = 0)
 {
 }
コード例 #4
0
 public void NoticeLog(Incident incident = null, RightNowServiceReference.Contact contact = null, string LogMessage = null, string LogNote = null, string source = null, int timeElapsed = 0)
 {
     this.notice(LogMessage, LogNote, incident, contact, source, _businessFunction, timeElapsed, _host);
 }
コード例 #5
0
 public void ClickLog(Incident incident = null, RightNowServiceReference.Contact contact = null, string LogMessage = null, string LogNote = null, string Source = null, int TimeElapsed = 0)
 {
     this.click(LogMessage, LogNote, incident, contact, Source, _businessFunction, TimeElapsed, _host);
 }