📄 connectionenums.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace GRRSServer
{
/// <summary>
/// The type of commands that you can sent to the clients.(Note : These are just some comman types.You should do the desired actions when a command received to the client yourself.)
/// </summary>
public enum CommandType
{
/// <summary>
/// Force the target to logoff from the application without prompt.Pass null or "" as command's Metadata.
/// </summary>
UserExit=1,
/// <summary>
/// Force the target to logoff from the application with prompt.Pass the timer interval of logoff action as command's Metadata in miliseconds.For example "20000".
/// </summary>
UserExitWithTimer,
/// <summary>
/// Force the target PC to LOCK without prompt.Pass null or "" as command's Metadata.
/// </summary>
PCLock,
/// <summary>
/// Force the target PC to LOCK with prompt.Pass the timer interval of LOCK action as command's Metadata in miliseconds.For example "20000".
/// </summary>
PCLockWithTimer,
/// <summary>
/// 一般用户消息
/// </summary>
CommonUserMsg,
/// <summary>
/// NO Command
/// </summary>
NONE
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -