update comments

This commit is contained in:
Craig Roberts 2018-08-30 15:08:19 -04:00
parent 54abb77704
commit 672c8e9e10

View file

@ -6,8 +6,7 @@ using System.Text;
namespace AsterNET.Manager.Action namespace AsterNET.Manager.Action
{ {
/// <summary> /// <summary>
/// Redirect all channels currently bridged to the specified channel to the specified destination. /// Redirect all channels currently bridged to the specified channel to the specified destination.<br />
///
/// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerAction_BlindTransfer">https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerAction_BlindTransfer</see> /// See <see target="_blank" href="https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerAction_BlindTransfer">https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerAction_BlindTransfer</see>
/// </summary> /// </summary>
class BlindTransferAction : ManagerAction class BlindTransferAction : ManagerAction
@ -41,17 +40,17 @@ namespace AsterNET.Manager.Action
} }
/// <summary> /// <summary>
/// Gets or sets the channel. /// Gets or sets the channel.
/// </summary> /// </summary>
public string Channel { get; set; } public string Channel { get; set; }
/// <summary> /// <summary>
/// Gets or sets the context. /// Gets or sets the context.
/// </summary> /// </summary>
public string Context { get; set; } public string Context { get; set; }
/// <summary> /// <summary>
/// Gets or sets the exten. /// Gets or sets the extension.
/// </summary> /// </summary>
public string Exten { get; set; } public string Exten { get; set; }
} }