72ddf45b9f
enable XML documentation output (for intellisense when using as a dll, eg Nuget) update Sandcastle documentation (allows enabling Git Hub Pages, see: https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/ , uses '/docs' folder)
28 lines
889 B
C#
28 lines
889 B
C#
using System;
|
|
using AsterNET.Manager.Event;
|
|
|
|
namespace AsterNET.Manager.Action
|
|
{
|
|
/// <summary>
|
|
/// The StatusAction requests the state of all active channels.<br />
|
|
/// For each active channel a StatusEvent is generated. After the state of all
|
|
/// channels has been reported a StatusCompleteEvent is generated.
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Event.StatusEvent" />
|
|
/// <seealso cref="Manager.Event.StatusCompleteEvent" />
|
|
public class StatusAction : ManagerActionEvent
|
|
{
|
|
/// <summary>
|
|
/// Get the name of this action, i.e. "Status".
|
|
/// </summary>
|
|
public override string Action
|
|
{
|
|
get { return "Status"; }
|
|
}
|
|
|
|
public override Type ActionCompleteEventClass()
|
|
{
|
|
return typeof (StatusCompleteEvent);
|
|
}
|
|
}
|
|
} |