using System; using System.Collections.Generic; using System.Text; namespace Taobao.Top.Link.Channel { /// channel closed reason /// public class ChannelClosedEventArgs : EventArgs { /// get reason why closed /// public string Reason { get; private set; } public ChannelClosedEventArgs(string reason) : base() { this.Reason = reason; } } }