2 instantiations of DllImportData
System.Reflection.Emit (2)
System\Reflection\Emit\PseudoCustomAttributesData.cs (2)
93
return new
DllImportData
(moduleName, entryPoint, importAttributes);
106
return new
DllImportData
(moduleName, entryName, importAttributes);
5 references to DllImportData
System.Reflection.Emit (5)
System\Reflection\Emit\MethodBuilderImpl.cs (3)
33
internal
DllImportData
? _dllImportData;
81
_dllImportData =
DllImportData
.Create(dllName, entryName, nativeCallConv, nativeCharSet);
185
_dllImportData =
DllImportData
.Create(CustomAttributeInfo.DecodeCustomAttribute(con, binaryAttribute), out var preserveSig);
System\Reflection\Emit\PseudoCustomAttributesData.cs (2)
29
internal static
DllImportData
Create(CustomAttributeInfo attr, out bool preserveSig)
96
internal static
DllImportData
Create(string moduleName, string entryName, CallingConvention nativeCallConv, CharSet nativeCharSet)