using KGIS.Plugin.LayerProperty.EventHandler; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KGIS.Plugin.LayerProperty.Interface { public interface ITraceHandler { event CallBack OnTrace; int Index { set; } void AddException(Exception e); void AddDebugMessage(string debug); void AddErrorMessage(string error); } }