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

適用対象