From 672c8e9e10cc6a9e8eaa02f3c5f34a0e544f596c Mon Sep 17 00:00:00 2001 From: Craig Roberts Date: Thu, 30 Aug 2018 15:08:19 -0400 Subject: [PATCH] update comments --- .../Asterisk.NET/Manager/Action/BlindTransferAction.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Asterisk.2013/Asterisk.NET/Manager/Action/BlindTransferAction.cs b/Asterisk.2013/Asterisk.NET/Manager/Action/BlindTransferAction.cs index 2468eaf..9e7c43d 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Action/BlindTransferAction.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Action/BlindTransferAction.cs @@ -6,8 +6,7 @@ using System.Text; namespace AsterNET.Manager.Action { /// - /// 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.
/// See https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerAction_BlindTransfer ///
class BlindTransferAction : ManagerAction @@ -41,17 +40,17 @@ namespace AsterNET.Manager.Action } /// - /// Gets or sets the channel. + /// Gets or sets the channel. /// public string Channel { get; set; } /// - /// Gets or sets the context. + /// Gets or sets the context. /// public string Context { get; set; } /// - /// Gets or sets the exten. + /// Gets or sets the extension. /// public string Exten { get; set; } }