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