WebClientAsyncResult.cs 942 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // System.Web.Services.Protocols.WebClientAsyncResult.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Threading;
  10. namespace System.Web.Services.Protocols {
  11. public class WebClientAsyncResult : IAsyncResult {
  12. #region Fields
  13. object asyncState;
  14. WaitHandle waitHandle;
  15. #endregion // Fields
  16. #region Properties
  17. public object AsyncState {
  18. get { return asyncState; }
  19. }
  20. public WaitHandle AsyncWaitHandle {
  21. get { return waitHandle; }
  22. }
  23. public bool CompletedSynchronously {
  24. [MonoTODO]
  25. get { throw new NotImplementedException (); }
  26. }
  27. public bool IsCompleted {
  28. [MonoTODO]
  29. get { throw new NotImplementedException (); }
  30. }
  31. #endregion // Properties
  32. #region Methods
  33. [MonoTODO]
  34. public void Abort ()
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. #endregion // Methods
  39. }
  40. }