ApiInformation.IsTypePresent(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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");
}