ApiInformation.IsTypePresent(String) Méthode

Définition

Retourne true ou false pour indiquer si un type spécifié est présent.

public:
 static bool IsTypePresent(Platform::String ^ typeName);
 static bool IsTypePresent(winrt::hstring const& typeName);
public static bool IsTypePresent(string typeName);
function isTypePresent(typeName)
Public Shared Function IsTypePresent (typeName As String) As Boolean

Paramètres

typeName
String

Platform::String

winrt::hstring

Nom qualifié d’espace de noms du type.

Retours

Boolean

bool

True si le type spécifié est présent ; sinon, false.

Exemples

if (Windows.Foundation.Metadata.ApiInformation.IsTypePresent("Windows.System.AppDiagnosticInfo"))
{
    Debug.WriteLine("Windows.System.AppDiagnosticInfo type was found");
}
else
{
    Debug.WriteLine("Windows.System.AppDiagnosticInfo type was NOT found");
}

S’applique à