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

Ajax

开发平台:

C#

  1. using System;
  2. namespace AjaxPro
  3. {
  4. public class SimpleResult : IAsyncResult
  5. {
  6. private bool m_Completed = false;
  7. public bool IsCompleted
  8. {
  9. get
  10. {
  11. return m_Completed;
  12. }
  13. set
  14. {
  15. lock(this)
  16. {
  17. m_Completed = value;
  18. }
  19. }
  20. }
  21. #region Implementation of IAsyncResult
  22. public object AsyncState
  23. {
  24. get
  25. {
  26. return null;
  27. }
  28. }
  29. public bool CompletedSynchronously
  30. {
  31. get
  32. {
  33. return false;
  34. }
  35. }
  36. public System.Threading.WaitHandle AsyncWaitHandle
  37. {
  38. get
  39. {
  40. return this.AsyncWaitHandle;
  41. }
  42. }
  43. #endregion
  44. }
  45. }