ApiInformation.IsTypePresent(String) Метод

Определение

Возвращает значение true или false, чтобы указать, присутствует ли указанный тип.

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

Параметры

typeName
String

Platform::String

winrt::hstring

Имя типа с указанием пространства имен.

Возвращаемое значение

Boolean

bool

Значение true , если присутствует указанный тип; в противном случае — false.

Примеры

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

Применяется к