1 write to _item
Microsoft.CodeAnalysis.Features (1)
NavigateTo\RoslynNavigateToItem.cs (1)
114_item = item;
16 references to _item
Microsoft.CodeAnalysis.Features (16)
NavigateTo\RoslynNavigateToItem.cs (16)
97/// The <see cref="Document"/> that <see cref="_item"/> is contained within. 197string INavigateToSearchResult.Kind => _item.Kind; 199NavigateToMatchKind INavigateToSearchResult.MatchKind => _item.MatchKind; 201bool INavigateToSearchResult.IsCaseSensitive => _item.IsCaseSensitive; 203string INavigateToSearchResult.Name => _item.DeclaredSymbolInfo.Name; 205ImmutableArray<TextSpan> INavigateToSearchResult.NameMatchSpans => _item.NameMatchSpans; 218parts.Add(_item.DeclaredSymbolInfo.ParameterCount.ToString("X4")); 219parts.Add(_item.DeclaredSymbolInfo.TypeParameterCount.ToString("X4")); 220parts.Add(_item.DeclaredSymbolInfo.Name); 279ImmutableArray<PatternMatch> INavigateToSearchResult.Matches => _item.Matches; 283Glyph INavigableItem.Glyph => GetGlyph(_item.DeclaredSymbolInfo.Kind, _item.DeclaredSymbolInfo.Accessibility); 337TextTags.Text, _item.DeclaredSymbolInfo.Name + _item.DeclaredSymbolInfo.NameSuffix)]; 349TextSpan INavigableItem.SourceSpan => _item.DeclaredSymbolInfo.Span; 351bool INavigableItem.IsStale => _item.IsStale;