📄 chatservice.cs
字号:
/*
* MS 06-04-16 initial version
*
*
*
*
*
*/
using System;
using System.Collections.Generic;
using System.Text;
namespace AjaxPro.Services
{
[AjaxNamespace("AjaxPro.Services.Chat")]
public abstract class IChatService
{
[AjaxMethod]
public abstract bool SendMessage(string room, string message);
[AjaxMethod]
public abstract object[] RetrieveNew(string room, DateTime lastRetreived);
[AjaxMethod]
public abstract object[] RetrieveLast(string room, int count);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -