ApiInformation.IsTypePresent(String) Methode

Definition

Gibt true oder false zurück, um anzugeben, ob ein angegebener Typ vorhanden ist.

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

Parameter

typeName
String

Platform::String

winrt::hstring

Der namespacequalifizierte Name des Typs.

Gibt zurück

Boolean

bool

True , wenn der angegebene Typ vorhanden ist; andernfalls false.

Beispiele

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

Gilt für: