Method | Description | |
---|---|---|
AutoLoad ( string name, string searchFolders, bool throwNotFound, bool throwExceptions ) : bool |
Looks for 'name' inside /x86/ and /x64/ subfolders of 'folder', depending on executing architecture.
|
|
AutoLoadNearby ( string name, bool throwFailure ) : bool |
Looks for 'name' inside /x86/ or /x64/ (depending on arch) subfolders of known assembly locations
|
|
EnsureLoadedByPath ( string fullPath, bool throwException ) : bool | ||
LoadByPath ( string fullPath, bool throwException ) : |
Calls LoadLibraryEx with (Search DLL Load Dir and System32) flags. May increment reference count. Use EnsureLoadedByPath instead if you don't need a pointer.
|
|
LoadWebPOrFail ( ) : void |
Method | Description | |
---|---|---|
LoadLibraryEx ( string lpFileName, |
public static AutoLoad ( string name, string searchFolders, bool throwNotFound, bool throwExceptions ) : bool | ||
name | string | |
searchFolders | string | |
throwNotFound | bool | |
throwExceptions | bool | |
return | bool |
public static AutoLoadNearby ( string name, bool throwFailure ) : bool | ||
name | string | |
throwFailure | bool | |
return | bool |
public static EnsureLoadedByPath ( string fullPath, bool throwException ) : bool | ||
fullPath | string | |
throwException | bool | |
return | bool |
public static LoadByPath ( string fullPath, bool throwException ) : |
||
fullPath | string | |
throwException | bool | |
return |