Implemented interface member:
property
CompletedSynchronously
System.IAsyncResult.CompletedSynchronously
8 writes to CompletedSynchronously
System.Data.Services.Client (8)
System\Data\Services\Client\DataServiceContext.cs (2)
4365this.CompletedSynchronously &= asyncResult.CompletedSynchronously; 4497this.CompletedSynchronously &= pereq.RequestCompletedSynchronously;
System\Data\Services\Client\GetReadStreamResult.cs (2)
64this.CompletedSynchronously &= asyncResult.CompletedSynchronously; 175state.CompletedSynchronously &= asyncResult.CompletedSynchronously; // BeginGetResponse
System\Data\Services\Client\QueryResult.cs (4)
180this.CompletedSynchronously &= asyncResult.CompletedSynchronously; 548state.CompletedSynchronously &= asyncResult.CompletedSynchronously; // BeginGetResponse 638queryResult.CompletedSynchronously &= asyncResult.CompletedSynchronously; // BeginRead 656state.CompletedSynchronously &= asyncResult.CompletedSynchronously; // BeginRead
12 references to CompletedSynchronously
System.Data.Services.Client (12)
System\Data\Services\Client\BaseAsyncResult.cs (2)
217Debug.Assert((result.CompletedSynchronously && result.IsCompleted) || !result.CompletedSynchronously, "CompletedSynchronously && !IsCompleted");
System\Data\Services\Client\DataServiceContext.cs (7)
4254Debug.Assert(this.CompletedSynchronously, "completedSynchronously"); 4268Debug.Assert((this.CompletedSynchronously && this.IsCompleted) || !this.CompletedSynchronously, "sync without complete"); 4413if (this.CompletedSynchronously) 4439Debug.Assert(this.executeAsync || this.CompletedSynchronously, "sync !CompletedSynchronously"); 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 (2)
192Debug.Assert(!this.CompletedSynchronously || this.IsCompleted, "if CompletedSynchronously then MUST IsCompleted"); 642Debug.Assert(!queryResult.CompletedSynchronously || queryResult.IsCompletedInternally, "AsyncEndGetResponse !IsCompleted");