3 instantiations of AutoClosingViewProperty
Microsoft.CodeAnalysis.EditorFeatures (3)
Shared\Extensions\ITextViewExtensions.AutoClosingViewProperty.cs (3)
28
var properties = textView.Properties.GetOrCreateSingletonProperty(() => new
AutoClosingViewProperty
<TProperty, TTextView>(textView));
49
var properties = textView.Properties.GetOrCreateSingletonProperty(() => new
AutoClosingViewProperty
<TProperty, TTextView>(textView));
60
var properties = textView.Properties.GetOrCreateSingletonProperty(() => new
AutoClosingViewProperty
<TProperty, TTextView>(textView));
7 references to AutoClosingViewProperty
Microsoft.CodeAnalysis.EditorFeatures (7)
Shared\Extensions\ITextViewExtensions.AutoClosingViewProperty.cs (6)
28
var
properties = textView.Properties.GetOrCreateSingletonProperty(() => new AutoClosingViewProperty<TProperty, TTextView>(textView));
49
var
properties = textView.Properties.GetOrCreateSingletonProperty(() => new AutoClosingViewProperty<TProperty, TTextView>(textView));
60
var
properties = textView.Properties.GetOrCreateSingletonProperty(() => new AutoClosingViewProperty<TProperty, TTextView>(textView));
66
if (textView.Properties.TryGetProperty(typeof(
AutoClosingViewProperty
<TProperty, TTextView>), out
AutoClosingViewProperty
<TProperty, TTextView> properties))
81
_textView.Properties.RemoveProperty(typeof(
AutoClosingViewProperty
<TProperty, TTextView>));
Shared\Extensions\ITextViewExtensions.cs (1)
179
return
AutoClosingViewProperty
<TProperty, TTextView>.GetOrCreateValue(textView, key, valueCreator, out value);