72ddf45b9f
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)
19 lines
530 B
C#
19 lines
530 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold.<br/>
|
|
/// It is implemented in channels/chan_sip.c.<br/>
|
|
/// Available since Asterisk 1.2
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Event.HoldEvent"/>
|
|
public class UnholdEvent : ManagerEvent
|
|
{
|
|
/// <summary>
|
|
/// Creates a new UnholdEvent.
|
|
/// </summary>
|
|
public UnholdEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
} |