21 lines
778 B
C#
21 lines
778 B
C#
|
using System;
|
||
|
using Asterisk.NET.Manager.Response;
|
||
|
|
||
|
namespace Asterisk.NET.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="Asterisk.NET.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="Asterisk.NET.Manager.Response"/>
|
||
|
public abstract object ActionCompleteResponseClass();
|
||
|
}
|
||
|
}
|