| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // System.Web.Services.Protocols.WebClientAsyncResult.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Threading;
- namespace System.Web.Services.Protocols {
- public class WebClientAsyncResult : IAsyncResult {
- #region Fields
- object asyncState;
- WaitHandle waitHandle;
- #endregion // Fields
- #region Properties
- public object AsyncState {
- get { return asyncState; }
- }
- public WaitHandle AsyncWaitHandle {
- get { return waitHandle; }
- }
- public bool CompletedSynchronously {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- public bool IsCompleted {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public void Abort ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|