16 references to CharSetUnicode
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
72
case MethodImportAttributes.
CharSetUnicode
:
183
result |= MethodImportAttributes.
CharSetUnicode
;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (5)
Attributes\AttributeTests_WellKnownAttributes.cs (5)
2710
MethodImportAttributes.
CharSetUnicode
|
2737
MethodImportAttributes.
CharSetUnicode
|
2868
new { attr = MakeDllImport(charSet: CharSet.Unicode), expected =MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
CharSetUnicode
}, // M9
2876
new { attr = MakeDllImport(charSet: CharSet.Unicode, exactSpelling: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.ExactSpelling | MethodImportAttributes.
CharSetUnicode
},// M15
2877
new { attr = MakeDllImport(charSet: CharSet.Unicode, exactSpelling: false), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
CharSetUnicode
}, // M16
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\SourceMethodSymbol.vb (1)
292
result = MethodImportAttributes.
CharSetUnicode
Or MethodImportAttributes.ExactSpelling
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (6)
Attributes\AttributeTests_WellKnownAttributes.vb (6)
1515
MethodImportAttributes.
CharSetUnicode
Or
1543
MethodImportAttributes.
CharSetUnicode
Or
1888
New With {.n = 9, .attr = MakeDllImport(charSet:=CharSet.Unicode), .expected = MethodImportAttributes.CallingConventionWinApi Or MethodImportAttributes.
CharSetUnicode
},
1896
New With {.n = 15, .attr = MakeDllImport(charSet:=CharSet.Unicode, exactSpelling:=True), .expected = MethodImportAttributes.CallingConventionWinApi Or MethodImportAttributes.ExactSpelling Or MethodImportAttributes.
CharSetUnicode
},
1897
New With {.n = 16, .attr = MakeDllImport(charSet:=CharSet.Unicode, exactSpelling:=False), .expected = MethodImportAttributes.CallingConventionWinApi Or MethodImportAttributes.
CharSetUnicode
},
2832
Assert.Equal(declareFlags Or MethodImportAttributes.ExactSpelling Or MethodImportAttributes.
CharSetUnicode
, import.Attributes)
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
114
CharSet.Unicode => MethodImportAttributes.
CharSetUnicode
,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
128
MethodImportAttributes.
CharSetUnicode
=> CharSet.Unicode,