Esempio n. 1
0
        public static string bodyYarat(WFException ex)
        {
            string p0 = "Bir update servisi hata verdi <br/>";
            string p1 = "Kullanıcı Adı: " + ex.UserName + "<br/>";
            string p2 = " Makina Adı:" + ex.MachineName + "<br/>";
            string p3 = " Inner Exception: " + ex.innerexception + "<br/>";
            string p4 = " HelpLink: " + ex.helplink + "<br/>";
            string p5 = " HREsult: " + ex.hresult + "<br/>";
            string p6 = " MSG: " + ex.msg + "<br/>";
            string p7 = "LogDate: " + DateTime.Now.ToString() + "<br/>";
            string p8 = "StackTrace: " + ex.stacktrace + "<br/>";

            return(p0 + p1 + p2 + p3 + p4 + p5 + p6 + p7 + p8);
        }
Esempio n. 2
0
        public static void LogError(Exception ex)
        {
            WFException ext = new WFException();

            ext.innerexception = ex.InnerException != null?ex.InnerException.ToString() : "";

            ext.msg = ex.Message != null?ex.Message.ToString() : "";

            ext.src = ex.Source != null?ex.Source.ToString() : "";

            ext.stacktrace = ex.StackTrace != null?ex.StackTrace.ToString() : "";

            ext.targetsite = ex.TargetSite != null?ex.TargetSite.ToString() : "";

            ext.MachineName = Environment.MachineName != null?Environment.MachineName.ToString() : "";

            ext.UserName = Environment.UserName != null?Environment.UserName.ToString() : "";

            MailAt("Güncelleme Servisi hata verdi", bodyYarat(ext));
        }