asternet/Asterisk.2013/Asterisk.NET/Manager/Action/ManagerActionResponse.cs
2015-01-03 15:37:29 +00:00

18 lines
794 B
C#

namespace AsterNET.Manager.Action
{
/// <summary>
/// The ManagerActionResponse is implemented by ManagerActions that
/// return their result in a custom ManagerResponse<br />
/// The response type that indicates that Asterisk is finished is returned by the
/// ActionCompleteResponseClass property.
/// </summary>
/// <seealso cref="AsterNET.Manager.Event.ResponseEvent" />
public abstract class ManagerActionResponse : ManagerAction
{
/// <summary>
/// Returns the response type that indicates that Asterisk is finished sending response for this action.
/// </summary>
/// <seealso cref="AsterNET.Manager.Response" />
public abstract object ActionCompleteResponseClass();
}
}