提交 2f28c081 authored 作者: Jonas Gauffin's avatar Jonas Gauffin

bugfixes

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk/scripts/contrib@8260 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 2053c87b
......@@ -8,6 +8,10 @@ namespace FreeSwitch.EventSocket.Commands
public abstract class CmdBase
{
/// <summary>
/// Node that the reply handler is removed after it have been invoked.
/// This is to make sure that the command can be garbage collected when it's done.
/// </summary>
public event ReplyHandler ReplyReceived;
private object _contextData;
......
......@@ -20,10 +20,5 @@ namespace FreeSwitch.EventSocket.Commands
{
get { return (_activate ? string.Empty : "off ") + _sessionId; }
}
public override CommandReply CreateReply(string dataToParse)
{
return base.CreateReply(dataToParse);
}
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论