Beispiel #1
0
 public void LogTrace(string Title)
 {
     IronTrace IT = new IronTrace(this.ScanID, CurrentPlugin, this.CurrentSection, this.CurrentParameterName, Title, TraceMsg.ToString());
     IT.Report();
     this.TraceMsg = new StringBuilder();
     this.RequestTraceMsg = "";
 }
Beispiel #2
0
        public static void Trace(string Source, string Message)
        {
            IronTrace IT = new IronTrace(Source, Message);

            IT.Report();
        }
Beispiel #3
0
        public static void ScanTrace(int ScanID, string PluginName, string Section, string Parameter, string Title, string Message)
        {
            IronTrace IT = new IronTrace(ScanID, PluginName, Section, Parameter, Title, Message, new List <string[]>());

            IT.Report();
        }
Beispiel #4
0
        public void Trace(Request Req, string Action, string Message)
        {
            IronTrace IT = new IronTrace(Req, this.Name, Action, Message);

            IT.Report();
        }
Beispiel #5
0
 public static void Trace(string Source, string Message)
 {
     IronTrace IT = new IronTrace(Source, Message);
     IT.Report();
 }
Beispiel #6
0
 public static void ScanTrace(int ScanID, string PluginName, string Section, string Parameter, string Title, string Message)
 {
     IronTrace IT = new IronTrace(ScanID, PluginName, Section, Parameter, Title, Message);
     IT.Report();
 }
Beispiel #7
0
 public void Trace(Request Req, string Action, string Message)
 {
     IronTrace IT = new IronTrace(Req, this.Name, Action, Message);
     IT.Report();
 }
Beispiel #8
0
        public void LogTrace(string Title)
        {
            try
            {
                this.TraceMsgXml.WriteEndElement();
                this.TraceMsgXml.WriteEndDocument();
                this.TraceMsgXml.Close();
            }
            catch { }
            IronTrace IT = new IronTrace(this.ScanID, CurrentPlugin, this.CurrentSection, this.CurrentParameterName, Title, TraceMsg.ToString(), this.TraceOverviewEntries);
            IT.Report();
            this.TraceMsg = new StringBuilder();

            this.RequestTraceMsg = "";
            this.TraceTitle = "";
            this.TraceTitleWeight = 0;
        }