| 12345678910111213141516171819202122232425 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ServiceModel;using System.IO;namespace VirgoUI.Client.Models.Sys{    //[CallbackBehavior(ConcurrencyMode=ConcurrencyMode.Multiple, UseSynchronizationContext=false)]    //public class EventServiceCallback : IEventServiceCallback    //{    //    public event Action<EventItem> FireEvent;    //    public void SendEvent(EventItem ev)    //    {    //        if (FireEvent != null)    //        {    //            FireEvent(ev);    //        }    //    }    //}}
 |