3 writes to _pendingExecutionCancellationSource
Microsoft.VisualStudio.LanguageServices.CSharp (3)
SemanticSearch\SemanticSearchToolWindowImpl.cs (3)
361
var pendingExecutionCancellationSource = Interlocked.Exchange(ref
_pendingExecutionCancellationSource
, null);
380
Interlocked.Exchange(ref
_pendingExecutionCancellationSource
, cancellationSource)?.Cancel();
405
Interlocked.CompareExchange(ref
_pendingExecutionCancellationSource
, value: null, cancellationSource);
1 reference to _pendingExecutionCancellationSource
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchToolWindowImpl.cs (1)
328
var isExecuting =
_pendingExecutionCancellationSource
!= null;