LoaderHelpers.IsLoaderActive(String) Method

Definition

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

Nullable<Boolean>

True if the active loader has the same name as the parameter. Null if there isn't an active loader.

Applies to