Implemented interface member:
method
GetName
Microsoft.VisualStudio.LanguageServices.Implementation.CodeModel.ICodeModelService.GetName(Microsoft.CodeAnalysis.SyntaxNode)
1 override of GetName
Microsoft.VisualStudio.LanguageServices.CSharp (1)
CodeModel\CSharpCodeModelService.cs (1)
794
public override string
GetName
(SyntaxNode node)
13 references to GetName
Microsoft.VisualStudio.LanguageServices.CSharp (12)
CodeModel\CSharpCodeModelService.CodeModelEventCollector.cs (12)
119
if (!StringComparer.Ordinal.Equals(CodeModelService.
GetName
(oldArgument), CodeModelService.
GetName
(newArgument)))
211
if (!StringComparer.Ordinal.Equals(CodeModelService.
GetName
(oldParameter), CodeModelService.
GetName
(newParameter)))
280
if (!StringComparer.Ordinal.Equals(CodeModelService.
GetName
(oldEnumMember), CodeModelService.
GetName
(newEnumMember)))
307
if (!StringComparer.Ordinal.Equals(CodeModelService.
GetName
(oldProperty), CodeModelService.
GetName
(newProperty)))
358
if (!StringComparer.Ordinal.Equals(CodeModelService.
GetName
(oldVariableDeclarator), CodeModelService.
GetName
(newVariableDeclarator)))
417
if (!StringComparer.Ordinal.Equals(CodeModelService.
GetName
(oldMethod), CodeModelService.
GetName
(newMethod)))
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
967
result = getIndexInContainer(containerNode, child =>
GetName
(child) == name);