예제 #1
0
파일: Scanner.cs 프로젝트: welias/IronWASP
 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 = "";
 }
예제 #2
0
        public static void Trace(string Source, string Message)
        {
            IronTrace IT = new IronTrace(Source, Message);

            IT.Report();
        }
예제 #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();
        }
예제 #4
0
        public void Trace(Request Req, string Action, string Message)
        {
            IronTrace IT = new IronTrace(Req, this.Name, Action, Message);

            IT.Report();
        }
예제 #5
0
파일: Tools.cs 프로젝트: msaindane/IronWASP
 public static void Trace(string Source, string Message)
 {
     IronTrace IT = new IronTrace(Source, Message);
     IT.Report();
 }
예제 #6
0
파일: Tools.cs 프로젝트: msaindane/IronWASP
 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();
 }
예제 #7
0
 public void Trace(Request Req, string Action, string Message)
 {
     IronTrace IT = new IronTrace(Req, this.Name, Action, Message);
     IT.Report();
 }
예제 #8
0
파일: Scanner.cs 프로젝트: 0ks3ii/IronWASP
        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;
        }