using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AsterNET.Manager.Action
{
///
/// 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
{
///
/// Creates a new empty .
///
public BlindTransferAction()
{
}
///
/// Creates a new .
///
///
///
///
public BlindTransferAction(string channel, string context, string extension)
{
Channel = channel;
Context = context;
Exten = extension;
}
///
/// Get the name of this action, i.e. "BlindTransfer".
///
public override string Action
{
get { return "BlindTransfer"; }
}
///
/// Gets or sets the channel.
///
public string Channel { get; set; }
///
/// Gets or sets the context.
///
public string Context { get; set; }
///
/// Gets or sets the extension.
///
public string Exten { get; set; }
}
}