Implemented interface member:
property
IsCompleted
System.IAsyncResult.IsCompleted
9 references to IsCompleted
System.Data.Services.Client (9)
System\Data\Services\Client\BaseAsyncResult.cs (5)
122System.Threading.Interlocked.CompareExchange(ref this.asyncWait, new System.Threading.ManualResetEvent(this.IsCompleted), null); 127if (this.IsCompleted) 217Debug.Assert((result.CompletedSynchronously && result.IsCompleted) || !result.CompletedSynchronously, "CompletedSynchronously && !IsCompleted"); 219if (!result.IsCompleted) 223Debug.Assert(result.IsCompleted, "not completed after waiting");
System\Data\Services\Client\DataServiceContext.cs (2)
4268Debug.Assert((this.CompletedSynchronously && this.IsCompleted) || !this.CompletedSynchronously, "sync without complete"); 4440Debug.Assert((this.CompletedSynchronously && this.IsCompleted) || !this.CompletedSynchronously, "sync without complete");
System\Data\Services\Client\GetReadStreamResult.cs (1)
76Debug.Assert(!this.CompletedSynchronously || this.IsCompleted, "if CompletedSynchronously then MUST IsCompleted");
System\Data\Services\Client\QueryResult.cs (1)
192Debug.Assert(!this.CompletedSynchronously || this.IsCompleted, "if CompletedSynchronously then MUST IsCompleted");