5 references to BestFitMappingDisable
Microsoft.CodeAnalysis (2)
Symbols\PlatformInvokeInformation.cs (2)
137
case MethodImportAttributes.
BestFitMappingDisable
:
241
result |= MethodImportAttributes.
BestFitMappingDisable
;
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Attributes\AttributeTests_WellKnownAttributes.cs (1)
2891
new { attr = MakeDllImport(bestFitMapping: false), expected = MethodImportAttributes.CallingConventionWinApi | MethodImportAttributes.
BestFitMappingDisable
}, // M24
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
Attributes\AttributeTests_WellKnownAttributes.vb (1)
1908
New With {.n = 24, .attr = MakeDllImport(bestFitMapping:=False), .expected = MethodImportAttributes.CallingConventionWinApi Or MethodImportAttributes.
BestFitMappingDisable
},
System.Reflection.Emit (1)
System\Reflection\Emit\PseudoCustomAttributesData.cs (1)
77
importAttributes |= MethodImportAttributes.
BestFitMappingDisable
;