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
954 B
C#
28 lines
954 B
C#
using System;
|
|
using AsterNET.Manager.Event;
|
|
|
|
namespace AsterNET.Manager.Action
|
|
{
|
|
/// <summary>
|
|
/// The ZapShowChannelsAction requests the state of all zap channels.<br />
|
|
/// For each zap channel a ZapShowChannelsEvent is generated. After all zap
|
|
/// channels have been listed a ZapShowChannelsCompleteEvent is generated.
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Event.ZapShowChannelsEvent" />
|
|
/// <seealso cref="Manager.Event.ZapShowChannelsCompleteEvent" />
|
|
public class ZapShowChannelsAction : ManagerActionEvent
|
|
{
|
|
/// <summary>
|
|
/// Get the name of this action, i.e. "ZapShowChannels".
|
|
/// </summary>
|
|
public override string Action
|
|
{
|
|
get { return "ZapShowChannels"; }
|
|
}
|
|
|
|
public override Type ActionCompleteEventClass()
|
|
{
|
|
return typeof (ZapShowChannelsCompleteEvent);
|
|
}
|
|
}
|
|
} |