asternet/Asterisk.2013/Asterisk.NET/Manager/Action/SIPPeersAction.cs
Herman van den Berg 72ddf45b9f fixed XML documentation errors
enable XML documentation output (for intellisense when using as a dll, eg Nuget)
update Sandcastle documentation (allows enabling Git Hub Pages, see: https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/ , uses '/docs' folder)
2016-10-19 09:20:23 +02:00

26 lines
841 B
C#

using System;
using AsterNET.Manager.Event;
namespace AsterNET.Manager.Action
{
/// <summary>
/// Retrieves a list of all defined SIP peers.<br />
/// 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.<br />
/// Available since Asterisk 1.2
/// </summary>
/// <seealso cref="Manager.Event.PeerEntryEvent" />
/// <seealso cref="Manager.Event.PeerlistCompleteEvent" />
public class SIPPeersAction : ManagerActionEvent
{
public override string Action
{
get { return "SIPPeers"; }
}
public override Type ActionCompleteEventClass()
{
return typeof (PeerlistCompleteEvent);
}
}
}