1 write to Symbol
Microsoft.VisualStudio.LanguageServices (1)
Utilities\SymbolViewModel.cs (1)
35Symbol = symbol;
17 references to Symbol
Microsoft.VisualStudio.LanguageServices (17)
CommonControls\MemberSelectionViewModel.cs (2)
39_symbolToMemberViewMap = members.ToImmutableDictionary(memberViewModel => memberViewModel.Symbol); 120_symbolToDependentsMap[member.Symbol].Wait(context.UserCancellationToken);
ExtractInterface\VisualStudioExtractInterfaceOptionsService.cs (1)
85var includedMembers = viewModel.MemberContainers.Where(c => c.IsChecked).Select(c => c.Symbol);
MoveStaticMembers\StaticMemberSelectionViewModel.cs (2)
29_symbolToMemberViewMap = members.ToImmutableDictionary(memberViewModel => memberViewModel.Symbol); 61_symbolToDependentsMap[member.Symbol].Wait(context.UserCancellationToken);
PickMembers\VisualStudioPickMembersService.cs (1)
42.Select(c => c.Symbol)
PullMemberUp\MainDialog\BaseTypeTreeNodeViewModel.cs (2)
34public string Namespace => string.Format(ServicesVSResources.Namespace_0, Symbol.ContainingNamespace?.ToDisplayString() ?? "global"); 55var currentTypeSymbol = currentTreeNode.Symbol;
PullMemberUp\MainDialog\PullMemberUpDialogViewModel.cs (2)
73MemberSelectionViewModel.UpdateMembersBasedOnDestinationKind(_selectedDestination.Symbol.TypeKind); 83SelectedDestination.Symbol,
Utilities\MemberSymbolViewModel.cs (4)
20public string MakeAbstractCheckBoxAutomationText => string.Format(ServicesVSResources.Make_0_abstract, Symbol.Name); 27public Visibility MakeAbstractVisibility => Symbol.Kind == SymbolKind.Field || Symbol.IsAbstract ? Visibility.Hidden : Visibility.Visible; 53public string Accessibility => Symbol.DeclaredAccessibility.ToString();
Utilities\SymbolViewModel.cs (3)
47public string SymbolName => Symbol.ToDisplayString(s_symbolDisplayFormat); 49public ImageSource Glyph => Symbol.GetGlyph().GetImageSource(_glyphService); 51public string SymbolAutomationText => Symbol.ToDisplayString(s_symbolAutomationFormat);