2 instantiations of DllImportData
System.Reflection.Emit (2)
System\Reflection\Emit\PseudoCustomAttributesData.cs (2)
93return new DllImportData(moduleName, entryPoint, importAttributes); 106return new DllImportData(moduleName, entryName, importAttributes);
5 references to DllImportData
System.Reflection.Emit (5)
System\Reflection\Emit\MethodBuilderImpl.cs (3)
33internal 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)
29internal static DllImportData Create(CustomAttributeInfo attr, out bool preserveSig) 96internal static DllImportData Create(string moduleName, string entryName, CallingConvention nativeCallConv, CharSet nativeCharSet)