asternet/Asterisk.2013/Asterisk.NET/Manager/Event/StatusCompleteEvent.cs

24 lines
564 B
C#
Raw Normal View History

2014-01-08 14:16:39 +00:00
namespace AsterNET.Manager.Event
{
/// <summary>
/// A StatusCompleteEvent is triggered after the state of all channels has been reported in response
/// to a StatusAction.
/// </summary>
/// <seealso cref="Manager.Action.StatusAction"/>
/// <seealso cref="Manager.event.StatusEvent"/>
public class StatusCompleteEvent : ResponseEvent
{
private int items;
public int Items
{
get { return this.items; }
set { this.items = value; }
}
public StatusCompleteEvent(ManagerConnection source)
: base(source)
{
}
}
}