Implemented interface member:
property
ModuleName
Microsoft.Cci.IPlatformInvokeInformation.ModuleName
9 references to ModuleName
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
4481if (oldImportData.ModuleName != newImportData.ModuleName)
Microsoft.CodeAnalysis.VisualBasic (2)
SymbolDisplay\SymbolDisplayVisitor.Members.vb (2)
486If data.ModuleName IsNot Nothing Then 491Builder.Add(CreatePart(SymbolDisplayPartKind.StringLiteral, Nothing, Quote(data.ModuleName), noEscaping:=True))
Microsoft.DotNet.CodeAnalysis (5)
Analyzers\PinvokeAnalyzer.cs (5)
142if (data.ModuleName.Equals("QCall", StringComparison.OrdinalIgnoreCase)) return; 151isPresent = CheckIfMemberPresent(data.EntryPointName, data.ModuleName, ref altMsg); 155isPresent = CheckIfMemberPresent(methodSymbol.Name, data.ModuleName, ref altMsg) 156|| CheckIfMemberPresent(methodSymbol.Name + 'W', data.ModuleName, ref altMsg); 163context.ReportDiagnostic(Diagnostic.Create(InvalidPinvokeCall, synref.GetSyntax().GetLocation(), data.ModuleName + "!" + (data.EntryPointName ?? methodSymbol.Name), altMsg));