ChatService.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:1k
源码类别:

Ajax

开发平台:

C#

  1. /*
  2.  * MS 06-04-16 initial version
  3.  * 
  4.  * 
  5.  * 
  6.  * 
  7.  * 
  8.  */
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Text;
  12. namespace AjaxPro.Services
  13. {
  14. [AjaxNamespace("AjaxPro.Services.Chat")]
  15. public abstract class IChatService
  16. {
  17. [AjaxMethod]
  18. public abstract bool SendMessage(string room, string message);
  19. [AjaxMethod]
  20. public abstract object[] RetrieveNew(string room, DateTime lastRetreived);
  21. [AjaxMethod]
  22. public abstract object[] RetrieveLast(string room, int count);
  23. }
  24. }