10 references to CharSetUnicode
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
72case MethodImportAttributes.CharSetUnicode: 183result |= MethodImportAttributes.CharSetUnicode;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (5)
Attributes\AttributeTests_WellKnownAttributes.cs (5)
2710MethodImportAttributes.CharSetUnicode | 2737MethodImportAttributes.CharSetUnicode | 2868new { attr = MakeDllImport(charSet: CharSet.Unicode), expected =MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.CharSetUnicode }, // M9 2876new { attr = MakeDllImport(charSet: CharSet.Unicode, exactSpelling: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.ExactSpelling | MethodImportAttributes.CharSetUnicode },// M15 2877new { attr = MakeDllImport(charSet: CharSet.Unicode, exactSpelling: false), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.CharSetUnicode }, // M16
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\SourceMethodSymbol.vb (1)
293result = MethodImportAttributes.CharSetUnicode Or MethodImportAttributes.ExactSpelling
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
114CharSet.Unicode => MethodImportAttributes.CharSetUnicode,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
128MethodImportAttributes.CharSetUnicode => CharSet.Unicode,