7 references to ExactSpelling
ILAssembler (1)
GrammarVisitor.cs (1)
4467return new(MethodImportAttributes.ExactSpelling);
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
56return (_flags & MethodImportAttributes.ExactSpelling) != 0; 173result |= MethodImportAttributes.ExactSpelling;
Microsoft.CodeAnalysis.VisualBasic (2)
Symbols\Source\SourceMethodSymbol.vb (2)
290result = MethodImportAttributes.CharSetAnsi Or MethodImportAttributes.ExactSpelling 293result = MethodImportAttributes.CharSetUnicode Or MethodImportAttributes.ExactSpelling
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
61importAttributes |= MethodImportAttributes.ExactSpelling;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
143ExactSpelling = (a & MethodImportAttributes.ExactSpelling) != 0,