You need to sign in or sign up before continuing.
INotifyErrorArisen.cs 609 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FLY.Thick.Base.IService
{
    public interface INotifyErrorArisen
    {
        event ErrorArisenEventHander ErrorArisenEvent;
    }
    public class ErrorArisenEventArgs : EventArgs
    {
        /// <summary>
        /// 未知错误
        /// </summary>
        public const byte ERRNO_Unkown = 0;

        /// <summary>
        /// 出错码
        /// </summary>
        public byte Errno = ERRNO_Unkown;
    }
    public delegate void ErrorArisenEventHander(object sender, ErrorArisenEventArgs e);
}