7 references to BestFitMappingEnable
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
134
case MethodImportAttributes.
BestFitMappingEnable
:
237
result |= MethodImportAttributes.
BestFitMappingEnable
;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (3)
Attributes\AttributeTests_WellKnownAttributes.cs (3)
2713
MethodImportAttributes.
BestFitMappingEnable
|
2740
MethodImportAttributes.
BestFitMappingEnable
|
2890
new { attr = MakeDllImport(bestFitMapping: true), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
BestFitMappingEnable
}, // M23
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
73
importAttributes |= MethodImportAttributes.
BestFitMappingEnable
;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\MethodBase\Ecma\EcmaMethodDecoder.cs (1)
148
BestFitMapping = (a & MethodImportAttributes.BestFitMappingMask) == MethodImportAttributes.
BestFitMappingEnable
,