asternet/Asterisk.2013/Asterisk.NET/Manager/Action/ReloadAction.cs
Книс Евгений ac993790be - ReloadEvent fix
- OriginateAction improve
- UpdateCOnfigAction improve
- ModuleLoadAction
- ReloadAction
2019-04-26 19:44:36 +07:00

26 lines
669 B
C#

namespace AsterNET.Manager.Action
{
/// <inheritdoc />
/// <summary>
/// The ReloadAction reloads Asterisk modules.
/// </summary>
public class ReloadAction : ManagerAction
{
/// <summary>
/// Creates ReloadAction for given module.
/// </summary>
//// <param name="module">module to reload.</param>
public ReloadAction(string module)
{
Module = module;
}
/// <inheritdoc />
public override string Action => "Reload";
/// <summary>
/// Get the name of the module.
/// </summary>
public string Module { get; }
}
}