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