Поделиться через


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

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