using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace Core.Util.Common
{
    public interface IDisposableEx : IDisposable
    {
        /// 
        /// 是否释放
        /// 
        [XmlIgnore]
        bool Disposed { get; }
        /// 
        /// 释放完事件
        /// 
        event EventHandler OnDisposed;
    }
}