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