using System;
namespace AsterNET.Manager.Action
{
///
/// Retrieves a list of all defined SIP peers.
/// For each peer that is found a PeerEntryEvent is sent by Asterisk containing
/// the details. When all peers have been reported a PeerlistCompleteEvent is sent.
/// Available since Asterisk 1.2
///
///
///
public class SIPPeersAction : ManagerActionEvent
{
public override string Action
{
get { return "SIPPeers"; }
}
public override Type ActionCompleteEventClass()
{
return typeof(Event.PeerlistCompleteEvent);
}
///
/// Creates a new SIPPeersAction.
///
public SIPPeersAction()
{
}
}
}