Enterprise Library之错误处理部分

自定义我们自己的错误在企业库中非常方便.
首先我们还是创建一个windows项目,添加一个app.config配置文件,
在开始页中添加一个按钮,双击按钮,在按钮点击事件中增加下面代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling;

namespace ExceptionHandlingBasicQuickStart
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                Convert.ToInt32("xx");
            }
            catch (Exception ex)
            {
                bool rethrow = ExceptionPolicy.HandleException(ex, "FormatIntPolicy");
            }
        }
    }
}
这里我们肯定是可以报一个错误的.
我们开始进行配置.如下图添加上节点.
Enterprise Library之错误处理部分_第1张图片
Logging Handler的配置如下图:


日志打印部分设置我就不多说了.好了我们找到日志文件,错误信息就打在里面了.
这里要说明下,ExceptionPolicy.HandleException(ex, "FormatIntPolicy");
后面的那个字符串指的是自定义的Exception名称. 

你可能感兴趣的:(windows,exception,object,logging,library,button)