32 implementations of IsCompleted
mscorlib (5)
system\io\filestream.cs (1)
189public bool IsCompleted
system\io\stream.cs (1)
1018public bool IsCompleted {
system\runtime\remoting\asyncresult.cs (1)
33public virtual bool IsCompleted
system\threading\Tasks\Task.cs (1)
1548public bool IsCompleted
system\threading\Tasks\TaskToApm.cs (1)
188bool IAsyncResult.IsCompleted { get { return this.Task.IsCompleted; } }
PresentationFramework (1)
src\Framework\System\Windows\Documents\PageContentAsyncResult.cs (1)
123public bool IsCompleted
System (5)
net\System\Net\_LazyAsyncResult.cs (1)
254public bool IsCompleted {
net\System\Net\HttpListener.cs (1)
2706public bool IsCompleted {
services\io\system\io\FileSystemWatcher.cs (1)
96public bool IsCompleted { get { throw new NotImplementedException(); } }
sys\System\IO\compression\DeflateStreamAsyncResult.cs (1)
76public bool IsCompleted {
sys\system\io\ports\SerialStream.cs (1)
1953public bool IsCompleted
System.Core (2)
System\IO\Pipes\Pipe.cs (1)
1436public bool IsCompleted {
System\IO\Pipes\PipeStream.cs (1)
1299public bool IsCompleted {
System.Data.Services.Client (1)
System\Data\Services\Client\BaseAsyncResult.cs (1)
154public bool IsCompleted
System.IdentityModel (2)
System\IdentityModel\AsyncResult.cs (1)
264public bool IsCompleted
System\IdentityModel\Selectors\SecurityTokenProvider.cs (1)
224public bool IsCompleted
System.IO.Log (2)
System\IO\Log\FileRecordSequenceCompletedAsyncResult.cs (1)
93public bool IsCompleted
System\IO\Log\OverlappedAsyncResult.cs (1)
90public bool IsCompleted
System.Messaging (1)
System\Messaging\MessageQueue.cs (1)
3762public bool IsCompleted
System.Runtime.Remoting (2)
channels\core\basicasyncresult.cs (1)
75public bool IsCompleted
channels\ipc\ipcport.cs (1)
344public bool IsCompleted { get { throw new NotSupportedException();} }
System.ServiceModel (2)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (1)
1006public bool IsCompleted
System\ServiceModel\Channels\OverlappedContext.cs (1)
519bool IAsyncResult.IsCompleted
System.ServiceModel.Internals (1)
System\Runtime\AsyncResult.cs (1)
95public bool IsCompleted
System.Transactions (1)
System\Transactions\CommittableTransaction.cs (1)
281bool IAsyncResult.IsCompleted
System.Web (3)
Hosting\AsyncResultBase.cs (1)
98public bool IsCompleted { get { return _completed; } }
HttpAsyncResult.cs (1)
136public bool IsCompleted { get { return _completed;}}
TaskWrapperAsyncResult.cs (1)
40public bool IsCompleted {
System.Web.Services (2)
System\Web\Services\Protocols\ClientProtocol.cs (1)
591public bool IsCompleted { get { return isCompleted; } }
System\Web\Services\Protocols\WebServiceHandler.cs (1)
442public bool IsCompleted { get { return true; } }
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Control.cs (1)
20112public bool IsCompleted {
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
1917public bool IsCompleted
41 references to IsCompleted
mscorlib (9)
system\runtime\remoting\lease.cs (1)
486if (iar.IsCompleted)
system\threading\Tasks\BeginEndAwaitableAdapter.cs (2)
71Contract.Assert(asyncResult.IsCompleted); 147Contract.Assert(_asyncResult != null && _asyncResult.IsCompleted);
system\threading\Tasks\FutureFactory.cs (6)
735if (asyncResult.IsCompleted) 853Contract.Assert(asyncResult.IsCompleted, "If the operation completed synchronously, it must be completed."); 989Contract.Assert(asyncResult.IsCompleted, "If the operation completed synchronously, it must be completed."); 1134Contract.Assert(asyncResult.IsCompleted, "If the operation completed synchronously, it must be completed."); 1286Contract.Assert(asyncResult.IsCompleted, "If the operation completed synchronously, it must be completed."); 1351Contract.Assert(asyncResult.IsCompleted, "If the operation completed synchronously, it must be completed.");
System (5)
net\System\Net\_Connection.cs (1)
3700if (m_LastAsyncResult != null && !m_LastAsyncResult.IsCompleted)
net\System\Net\filewebrequest.cs (4)
376if ((Timeout != System.Threading.Timeout.Infinite) && !result.IsCompleted) { 377if (!result.AsyncWaitHandle.WaitOne(Timeout, false) || !result.IsCompleted) { 405if ((Timeout != System.Threading.Timeout.Infinite) && !result.IsCompleted) { 406if (!result.AsyncWaitHandle.WaitOne(Timeout, false) || !result.IsCompleted) {
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
1405if (!asyncResult.IsCompleted) {
System.Data.Services.Client (9)
System\Data\Services\Client\BaseAsyncResult.cs (2)
420Debug.Assert(asyncResult.IsCompleted, "asyncResult.IsCompleted"); 440Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult != null && asyncResult.IsCompleted");
System\Data\Services\Client\DataServiceContext.cs (5)
5708Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult.IsCompleted"); 5777Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult.IsCompleted"); 5857Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult.IsCompleted"); 5904Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult.IsCompleted"); 5990Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult.IsCompleted");
System\Data\Services\Client\QueryResult.cs (2)
543Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult.IsCompleted"); 650Debug.Assert(asyncResult != null && asyncResult.IsCompleted, "asyncResult.IsCompleted");
System.Runtime.Remoting (5)
channels\core\socketstream.cs (2)
72if (_timeout>0 && !ar.IsCompleted) 75if (!ar.IsCompleted)
channels\core\streamhelper.cs (1)
119if (!iar.IsCompleted)
channels\ipc\pipestream.cs (2)
62if (_timeout>0 && !ar.IsCompleted) 65if (!ar.IsCompleted)
System.ServiceModel.Internals (3)
System\Runtime\CompletedAsyncResult.cs (3)
22Fx.AssertAndThrowFatal(result.IsCompleted, "CompletedAsyncResult was not completed!"); 41Fx.AssertAndThrowFatal(result.IsCompleted, "CompletedAsyncResult<T> was not completed!"); 63Fx.AssertAndThrowFatal(result.IsCompleted, "CompletedAsyncResult<T> was not completed!");
System.Web (7)
httpserverutility.cs (2)
537if (!ar.IsCompleted) { 554while (!ar.IsCompleted)
TaskWrapperAsyncResult.cs (1)
41get { return ((IAsyncResult)Task).IsCompleted; }
Util\AppVerifier.cs (2)
302assert(asyncResult.IsCompleted, AppVerifierErrorCode.AsyncCallbackGivenAsyncResultWhichWasNotCompleted); 365assert(asyncResultReturnedByBeginHandler.IsCompleted, AppVerifierErrorCode.BeginHandlerReturnedAsyncResultMarkedCompletedSynchronouslyButWhichWasNotCompleted);
Util\AspCompat.cs (2)
377if (!ar.IsCompleted) { 384while (!ar.IsCompleted)
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Control.cs (2)
6211if (!asyncResult.IsCompleted) { 6223Debug.Assert(asyncResult.IsCompleted, "Why isn't this asyncResult done yet?");