1 instantiation of SafeLoadLibrary
System (1)
net\System\Net\_SafeNetHandles.cs (1)
773public static readonly SafeLoadLibrary Zero = new SafeLoadLibrary(false);
9 references to SafeLoadLibrary
System (9)
net\System\Net\_SafeNetHandles.cs (3)
773public static readonly SafeLoadLibrary Zero = new SafeLoadLibrary(false); 798public unsafe static SafeLoadLibrary LoadLibraryEx(string library) { 800SafeLoadLibrary result = UnsafeNclNativeMethods.SafeNetHandles.LoadLibraryExW(library, null, _flags);
net\System\Net\UnsafeNativeMethods.cs (4)
131internal extern static IntPtr GetProcAddress(SafeLoadLibrary hModule, string entryPoint); 679internal static extern unsafe SafeLoadLibrary LoadLibraryExW([In] string lpwLibFileName, [In] void* hFile, [In] uint dwFlags); 3510SafeLoadLibrary s_TokenBindingLibrary = SafeLoadLibrary.LoadLibraryEx(dllFileName);
net\System\Net\WebSockets\WebSocketProtocolComponent.cs (2)
33private static readonly SafeLoadLibrary s_WebSocketDllHandle; 150s_WebSocketDllHandle = SafeLoadLibrary.LoadLibraryEx(s_DllFileName);