ApiInformation.IsPropertyPresent(String, String) メソッド

定義

指定した型に対して指定したプロパティ (書き込み可能または読み取り専用) が存在するかどうかを示す true または false を返します。

public:
 static bool IsPropertyPresent(Platform::String ^ typeName, Platform::String ^ propertyName);
 static bool IsPropertyPresent(winrt::hstring const& typeName, winrt::hstring const& propertyName);
public static bool IsPropertyPresent(string typeName, string propertyName);
function isPropertyPresent(typeName, propertyName)
Public Shared Function IsPropertyPresent (typeName As String, propertyName As String) As Boolean

パラメーター

typeName
String

Platform::String

winrt::hstring

型の名前空間修飾名。

propertyName
String

Platform::String

winrt::hstring

プロパティの名前。

戻り値

Boolean

bool

True を指定 したプロパティが型に存在する場合。それ以外の場合は false

if (Windows.Foundation.Metadata.ApiInformation.IsPropertyPresent("Windows.Devices.Sensors.Accelerometer", "ReadingTransform"))
{
    Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReadingTransform property was found");
}
else
{
    Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReadingTransform property was NOT found");
}

適用対象