9 references to CharSetAnsi
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
69
case MethodImportAttributes.
CharSetAnsi
:
179
result |= MethodImportAttributes.
CharSetAnsi
;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (4)
Attributes\AttributeTests_WellKnownAttributes.cs (4)
2867
new { attr = MakeDllImport(charSet: CharSet.Ansi), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
CharSetAnsi
}, // M8
2874
new { attr = MakeDllImport(charSet: CharSet.Ansi, exactSpelling: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.ExactSpelling | MethodImportAttributes.
CharSetAnsi
}, // M13
2875
new { attr = MakeDllImport(charSet: CharSet.Ansi, exactSpelling: false), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
CharSetAnsi
}, // M14
3436
Assert.Equal(MethodImportAttributes.
CharSetAnsi
, import.Attributes & MethodImportAttributes.CharSetMask);
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\SourceMethodSymbol.vb (1)
290
result = MethodImportAttributes.
CharSetAnsi
Or MethodImportAttributes.ExactSpelling
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
112
CharSet.Ansi => MethodImportAttributes.
CharSetAnsi
,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
126
MethodImportAttributes.
CharSetAnsi
=> CharSet.Ansi,