5 references to GetFullyQualifiedName
Microsoft.DotNet.GenFacades (5)
NotSupportedAssemblyGenerator.cs (5)
151
if (_exclusionApis != null && _exclusionApis.Contains(
GetFullyQualifiedName
(node)))
207
parent =
GetFullyQualifiedName
((TypeDeclarationSyntax)node.Parent);
215
private string GetMethodDefinition(MethodDeclarationSyntax node) =>
GetFullyQualifiedName
((TypeDeclarationSyntax)node.Parent) + "." + node.Identifier.ValueText;
217
private string GetPropertyDefinition(PropertyDeclarationSyntax node) =>
GetFullyQualifiedName
((TypeDeclarationSyntax)node.Parent) + "." + node.Identifier.ValueText;
219
private string GetEventDefinition(EventDeclarationSyntax node) =>
GetFullyQualifiedName
((TypeDeclarationSyntax)node.Parent) + "." + node.Identifier.ValueText;