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

Ajax

开发平台:

C#

  1. using System;
  2. using System.Configuration;
  3. using System.Text;
  4. #if(NET20)
  5. using System.Configuration.Provider;
  6. using System.Collections.Generic;
  7. #endif
  8. namespace AjaxPro
  9. {
  10. #if(NET20)
  11.     public abstract class TokenProvider : ProviderBase
  12. #else
  13. public abstract class TokenProvider
  14. #endif
  15.     {
  16.         public TokenProvider()
  17.         {
  18.         }
  19.         public abstract string GetToken();
  20.         public abstract bool Parse(string token);
  21.     }
  22. }