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)
18 lines
540 B
C#
18 lines
540 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// A HoldEvent is triggered by the SIP channel driver when a channel is put on hold.<br />
|
|
/// It is implemented in channels/chan_sip.c.<br />
|
|
/// Available since Asterisk 1.2
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Event.UnholdEvent" />
|
|
public class HoldEvent : ManagerEvent
|
|
{
|
|
public HoldEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
|
|
public string Status { get; set; }
|
|
}
|
|
} |