2 writes to _editorSessionOpt
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (2)
SignatureHelpPresenter.SignatureHelpPresenterSession.cs (2)
68_editorSessionOpt = _sigHelpBroker.CreateSignatureHelpSession( 186_editorSessionOpt = null;
14 references to _editorSessionOpt
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (14)
SignatureHelpPresenter.SignatureHelpPresenterSession.cs (14)
39public bool EditorSessionIsActive => _editorSessionOpt?.IsDismissed == false; 65if (_editorSessionOpt == null) 75debugTextView.HACK_StartCompletionSession(_editorSessionOpt); 78_editorSessionOpt.Dismissed += (s, e) => OnEditorSessionDismissed(); 79_editorSessionOpt.SelectedSignatureChanged += OnSelectedSignatureChanged; 89if (!_editorSessionOpt.Properties.ContainsProperty(s_augmentSessionKey)) 91_editorSessionOpt.Properties.AddProperty(s_augmentSessionKey, this); 99_editorSessionOpt.Recalculate(); 106if (_editorSessionOpt != null) 108_editorSessionOpt.SelectedSignature = defaultValue; 179if (_editorSessionOpt == null) 185_editorSessionOpt.Dismiss(); 191var target = _editorSessionOpt != null 192? _editorSessionOpt.Presenter as IIntellisenseCommandTarget