asternet/Asterisk.2013/Asterisk.NET/FastAGI/Command/SetMusicOffCommand.cs
2014-01-08 14:16:39 +00:00

20 lines
409 B
C#

using System;
namespace AsterNET.FastAGI.Command
{
/// <summary>
/// Turns off music on hold on the current channel.<br/>
/// Always returns 0.
/// </summary>
public class SetMusicOffCommand : AGICommand
{
/// <summary> Creates a new SetMusicOffCommand.</summary>
public SetMusicOffCommand()
{
}
public override string BuildCommand()
{
return "SET MUSIC OFF";
}
}
}