2 writes to _moduleHandle
PresentationFramework (2)
MS\Internal\WindowsRuntime\Generated\WinRT.cs (2)
125
_moduleHandle
= Platform.LoadLibraryExW(System.IO.Path.Combine(_currentModuleDirectory, fileName), IntPtr.Zero, /* LOAD_WITH_ALTERED_SEARCH_PATH */ 8);
132
_moduleHandle
= NativeLibrary.Load(fileName, Assembly.GetExecutingAssembly(), null);
6 references to _moduleHandle
PresentationFramework (6)
MS\Internal\WindowsRuntime\Generated\WinRT.cs (6)
127
if (
_moduleHandle
== IntPtr.Zero)
137
if (
_moduleHandle
== IntPtr.Zero)
142
_GetActivationFactory = Platform.GetProcAddress<DllGetActivationFactory>(
_moduleHandle
);
144
var canUnloadNow = Platform.GetProcAddress(
_moduleHandle
, "DllCanUnloadNow");
166
if ((
_moduleHandle
!= IntPtr.Zero) && !Platform.FreeLibrary(
_moduleHandle
))