eAction动作处理类
属性 |
数据类型 |
描述 |
ActionName |
string |
动作参数名称 |
Value |
string |
值 |
Actioning |
|
动作事件 |
Listen() |
|
开始监听事件 |
使用示例
public eAction action;
protected
void Page_Load(object sender, EventArgs e)
{
action = new eAction();
action.Actioning += action_Actioning;
action.Listen();
}
protected
void action_Actioning(string Action)
{
Response.Write(Action);
}