ChatService.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:1k
- /*
- * 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);
- }
- }