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