21 lines
762 B
C#
21 lines
762 B
C#
using System;
|
|
using AsterNET.Manager.Response;
|
|
|
|
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();
|
|
}
|
|
} |