9 references to CharSetAuto
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
75
case MethodImportAttributes.
CharSetAuto
:
187
result |= MethodImportAttributes.
CharSetAuto
;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Attributes\AttributeTests_WellKnownAttributes.cs (3)
2869
new { attr = MakeDllImport(charSet: CharSet.Auto), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
CharSetAuto
}, // M10
2878
new { attr = MakeDllImport(charSet: CharSet.Auto, exactSpelling: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.ExactSpelling | MethodImportAttributes.
CharSetAuto
}, // M17
2879
new { attr = MakeDllImport(charSet: CharSet.Auto, exactSpelling: false), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
CharSetAuto
}, // M18
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\SourceMethodSymbol.vb (1)
296
result = MethodImportAttributes.
CharSetAuto
System.Reflection.Emit (2)
System\Reflection\Emit\PseudoCustomAttributesData.cs (2)
113
CharSet.Auto => MethodImportAttributes.
CharSetAuto
,
115
_ => MethodImportAttributes.
CharSetAuto
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
127
MethodImportAttributes.
CharSetAuto
=> CharSet.Auto,