Implemented interface member:
property
EntryPointName
Microsoft.Cci.IPlatformInvokeInformation.EntryPointName
8 references to EntryPointName
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
4485else if (oldImportData.EntryPointName != newImportData.EntryPointName)
Microsoft.CodeAnalysis.VisualBasic (2)
SymbolDisplay\SymbolDisplayVisitor.Members.vb (2)
495If data.EntryPointName IsNot Nothing Then 500Builder.Add(CreatePart(SymbolDisplayPartKind.StringLiteral, Nothing, Quote(data.EntryPointName), noEscaping:=True))
Microsoft.DotNet.CodeAnalysis (3)
Analyzers\PinvokeAnalyzer.cs (3)
149if (data.EntryPointName != null) 151isPresent = CheckIfMemberPresent(data.EntryPointName, data.ModuleName, ref altMsg); 163context.ReportDiagnostic(Diagnostic.Create(InvalidPinvokeCall, synref.GetSyntax().GetLocation(), data.ModuleName + "!" + (data.EntryPointName ?? methodSymbol.Name), altMsg));
Microsoft.Interop.LibraryImportGenerator (1)
Analyzers\ConvertToLibraryImportFixer.cs (1)
534if (dllImportData.EntryPointName!.LastOrDefault() != entryPointSuffix.Value)