ApiInformation.IsTypePresent(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 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");
}