1 write to Symbol
Microsoft.VisualStudio.LanguageServices (1)
Utilities\SymbolViewModel.cs (1)
35
Symbol
= 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)
85
var 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)
34
public string Namespace => string.Format(ServicesVSResources.Namespace_0,
Symbol
.ContainingNamespace?.ToDisplayString() ?? "global");
55
var currentTypeSymbol = currentTreeNode.
Symbol
;
PullMemberUp\MainDialog\PullMemberUpDialogViewModel.cs (2)
73
MemberSelectionViewModel.UpdateMembersBasedOnDestinationKind(_selectedDestination.
Symbol
.TypeKind);
83
SelectedDestination.
Symbol
,
Utilities\MemberSymbolViewModel.cs (4)
20
public string MakeAbstractCheckBoxAutomationText => string.Format(ServicesVSResources.Make_0_abstract,
Symbol
.Name);
27
public Visibility MakeAbstractVisibility =>
Symbol
.Kind == SymbolKind.Field ||
Symbol
.IsAbstract ? Visibility.Hidden : Visibility.Visible;
53
public string Accessibility =>
Symbol
.DeclaredAccessibility.ToString();
Utilities\SymbolViewModel.cs (3)
47
public string SymbolName =>
Symbol
.ToDisplayString(s_symbolDisplayFormat);
49
public ImageSource Glyph =>
Symbol
.GetGlyph().GetImageSource(_glyphService);
51
public string SymbolAutomationText =>
Symbol
.ToDisplayString(s_symbolAutomationFormat);