10 references to ThrowOnUnmappableCharEnable
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
156
case MethodImportAttributes.
ThrowOnUnmappableCharEnable
:
225
result |= MethodImportAttributes.
ThrowOnUnmappableCharEnable
;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Attributes\AttributeTests_WellKnownAttributes.cs (3)
2714
MethodImportAttributes.
ThrowOnUnmappableCharEnable
, import.Attributes);
2741
MethodImportAttributes.
ThrowOnUnmappableCharEnable
, ((Cci.IPlatformInvokeInformation)info).Flags);
2894
new { attr = MakeDllImport(throwOnUnmappableChar: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
ThrowOnUnmappableCharEnable
}, // M23
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (3)
Attributes\AttributeTests_WellKnownAttributes.vb (3)
1519
MethodImportAttributes.
ThrowOnUnmappableCharEnable
, import.Attributes)
1547
MethodImportAttributes.
ThrowOnUnmappableCharEnable
, DirectCast(info, Cci.IPlatformInvokeInformation).Flags)
1910
New With {.n = 25, .attr = MakeDllImport(throwOnUnmappableChar:=True), .expected = MethodImportAttributes.CallingConventionWinApi Or MethodImportAttributes.
ThrowOnUnmappableCharEnable
},
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
83
importAttributes |= MethodImportAttributes.
ThrowOnUnmappableCharEnable
;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
149
ThrowOnUnmappableChar = (a & MethodImportAttributes.ThrowOnUnmappableCharMask) == MethodImportAttributes.
ThrowOnUnmappableCharEnable
,