2 writes to _editorSessionOpt
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
SignatureHelp\Presentation\SignatureHelpPresenter.SignatureHelpPresenterSession.cs (2)
62_editorSessionOpt = _sigHelpBroker.CreateSignatureHelpSession( 180_editorSessionOpt = null;
14 references to _editorSessionOpt
Microsoft.CodeAnalysis.EditorFeatures.Wpf (14)
SignatureHelp\Presentation\SignatureHelpPresenter.SignatureHelpPresenterSession.cs (14)
43public bool EditorSessionIsActive => _editorSessionOpt?.IsDismissed == false; 59if (_editorSessionOpt == null) 69debugTextView.HACK_StartCompletionSession(_editorSessionOpt); 72_editorSessionOpt.Dismissed += (s, e) => OnEditorSessionDismissed(); 73_editorSessionOpt.SelectedSignatureChanged += OnSelectedSignatureChanged; 83if (!_editorSessionOpt.Properties.ContainsProperty(s_augmentSessionKey)) 85_editorSessionOpt.Properties.AddProperty(s_augmentSessionKey, this); 93_editorSessionOpt.Recalculate(); 100if (_editorSessionOpt != null) 102_editorSessionOpt.SelectedSignature = defaultValue; 173if (_editorSessionOpt == null) 179_editorSessionOpt.Dismiss(); 185var target = _editorSessionOpt != null 186? _editorSessionOpt.Presenter as IIntellisenseCommandTarget