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

20 lines
329 B
C#

using System;
namespace AsterNET.FastAGI.Command
{
/// <summary>
/// Does nothing.
/// </summary>
public class NoopCommand : AGICommand
{
/// <summary>
/// Creates a new NoopCommand.
/// </summary>
public NoopCommand()
{
}
public override string BuildCommand()
{
return "NOOP";
}
}
}