result.cs
上传用户:ynjin1970
上传日期:2014-10-13
资源大小:6438k
文件大小:1k
源码类别:

中间件编程

开发平台:

Visual C++

  1. using System;
  2. using System.Collections ; //  ArrayList
  3. namespace WebApplication1
  4. {
  5. /// <summary>
  6. /// 
  7. /// </summary>
  8. public class result
  9. {
  10. public result()
  11. {
  12. // 
  13. // TODO: 在此处添加构造函数逻辑
  14. //
  15. }
  16. private string _label="";
  17. private string _message="";
  18. private ArrayList _links= new ArrayList();
  19. private bool _isCompleted =false;
  20. private DateTime _started;
  21. private DateTime _done;
  22. public string label
  23. {
  24. get{  return _label;}
  25. }
  26. public string message
  27. {
  28. get{  return _message;}
  29. set { _message=value;}
  30. }
  31. public ArrayList links
  32. {
  33. get{  return _links;}
  34. }
  35. public bool isCompleted
  36. {
  37. get{  return _isCompleted;}
  38. set 
  39. {
  40. _isCompleted=value;
  41. _done=DateTime.Now;
  42. }
  43. }
  44. public TimeSpan timeSpent
  45. {
  46. get{ return _done.Subtract(_started);}
  47. }
  48. public result(string pLabel)
  49. {
  50. _started=DateTime.Now;
  51. _label=pLabel;
  52. }
  53. }
  54. }