LoaderHelpers.IsLoaderActive(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Checks if the active loader has a specific name. Used in cases where the loader class is internal, like WindowsMRLoader.
public:
static Nullable<bool> IsLoaderActive(System::String ^ loaderName);
public static bool? IsLoaderActive (string loaderName);
static member IsLoaderActive : string -> Nullable<bool>
Public Shared Function IsLoaderActive (loaderName As String) As Nullable(Of Boolean)
Parameters
- loaderName
- String
The string name to compare against the active loader.
Returns
True if the active loader has the same name as the parameter. Null if there isn't an active loader.