fixed line breaks
This commit is contained in:
parent
ddd9b6086b
commit
d3ccb2c059
|
@ -7,18 +7,16 @@ using System.Threading.Tasks;
|
|||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
/// <summary>
|
||||
/// An ConfbridgeListCompleteEvent is triggered after the state of all Confbridges has been
|
||||
/// reported in response to an ConfbridgeListAction.
|
||||
///
|
||||
/// An ConfbridgeListCompleteEvent is triggered after the state of all Confbridges has been reported in response to an ConfbridgeListAction.<br/>
|
||||
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/ConfBridge+AMI+Actions">https://wiki.asterisk.org/wiki/display/AST/ConfBridge+AMI+Actions</see>
|
||||
/// </summary>
|
||||
/// /// <seealso cref="ConfbridgeListEvent" />
|
||||
public class ConfbridgeListCompleteEvent : ResponseEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="ConfbridgeListCompleteEvent"/> using the given <see cref="ManagerConnection"/>.
|
||||
/// Creates a new <see cref="ConfbridgeListCompleteEvent"/>.
|
||||
/// </summary>
|
||||
/// <param name="source"></param>
|
||||
/// <param name="source"><see cref="ManagerConnection"/></param>
|
||||
public ConfbridgeListCompleteEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
|
|
|
@ -7,8 +7,7 @@ using System.Threading.Tasks;
|
|||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
/// <summary>
|
||||
/// Raised as part of the ConfbridgeList action response list.
|
||||
///
|
||||
/// Raised as part of the ConfbridgeList action response list.<br/>
|
||||
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_ConfbridgeList">https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_ConfbridgeList</see>
|
||||
/// </summary>
|
||||
public class ConfbridgeListEvent : AbstractConfbridgeEvent
|
||||
|
@ -120,7 +119,7 @@ namespace AsterNET.Manager.Event
|
|||
public string Linkedid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="ConfbridgeListEvent"/> using the given <see cref="ManagerConnection"/>.
|
||||
/// Creates a new <see cref="ConfbridgeListEvent"/>.
|
||||
/// </summary>
|
||||
/// <param name="source"></param>
|
||||
public ConfbridgeListEvent(ManagerConnection source)
|
||||
|
|
|
@ -7,19 +7,16 @@ using System.Threading.Tasks;
|
|||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// An ConfbridgeListRoomsCompleteEvent is triggered after the state of all ConfBridgeRooms has been
|
||||
/// reported in response to an ConfbridgeListRoomsAction.
|
||||
///
|
||||
/// An ConfbridgeListRoomsCompleteEvent is triggered after the state of all ConfBridgeRooms has been reported in response to an ConfbridgeListRoomsAction.<br/>
|
||||
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/ConfBridge+AMI+Actions">https://wiki.asterisk.org/wiki/display/AST/ConfBridge+AMI+Actions</see>
|
||||
/// </summary>
|
||||
/// <seealso cref="ConfbridgeListRoomsEvent" />
|
||||
public class ConfbridgeListRoomsCompleteEvent : ResponseEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="ConfbridgeListRoomsCompleteEvent"/> using the given <see cref="ManagerConnection"/>.
|
||||
/// Creates a new <see cref="ConfbridgeListRoomsCompleteEvent"/>.
|
||||
/// </summary>
|
||||
/// <param name="source"></param>
|
||||
/// <param name="source"><see cref="ManagerConnection"/></param>
|
||||
public ConfbridgeListRoomsCompleteEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
|
|
|
@ -7,8 +7,7 @@ using System.Threading.Tasks;
|
|||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
/// <summary>
|
||||
/// Raised as part of the ConfbridgeListRooms action response list.
|
||||
///
|
||||
/// Raised as part of the ConfbridgeListRooms action response list.<br/>
|
||||
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_ConfbridgeList">https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_ConfbridgeList</see>
|
||||
/// </summary>
|
||||
public class ConfbridgeListRoomsEvent : AbstractConfbridgeEvent
|
||||
|
@ -29,9 +28,9 @@ namespace AsterNET.Manager.Event
|
|||
public string Locked { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new <see cref="ConfbridgeListRoomsEvent"/> using the given <see cref="ManagerConnection"/>.
|
||||
/// Creates a new <see cref="ConfbridgeListRoomsEvent"/>.
|
||||
/// </summary>
|
||||
/// <param name="source"></param>
|
||||
/// <param name="source"><see cref="ManagerConnection"/></param>
|
||||
public ConfbridgeListRoomsEvent(ManagerConnection source)
|
||||
: base(source)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue