ApiInformation.IsTypePresent(String) Metodo

Definizione

Restituisce true o false per indicare se è presente un tipo specificato.

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

Parametri

typeName
String

Platform::String

winrt::hstring

Nome qualificato dello spazio dei nomi del tipo.

Restituisce

Boolean

bool

True se il tipo specificato è presente; in caso contrario, false.

Esempio

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");
}

Si applica a