ApiInformation.IsWriteablePropertyPresent(String, String) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает значение true или false, чтобы указать, присутствует ли указанное доступное для записи свойство для указанного типа.
public:
static bool IsWriteablePropertyPresent(Platform::String ^ typeName, Platform::String ^ propertyName);
static bool IsWriteablePropertyPresent(winrt::hstring const& typeName, winrt::hstring const& propertyName);
public static bool IsWriteablePropertyPresent(string typeName, string propertyName);
function isWriteablePropertyPresent(typeName, propertyName)
Public Shared Function IsWriteablePropertyPresent (typeName As String, propertyName As String) As Boolean
Параметры
- typeName
-
String
Platform::String
winrt::hstring
Имя типа с указанием пространства имен.
- propertyName
-
String
Platform::String
winrt::hstring
Имя свойства.
Возвращаемое значение
bool
Значение true , если указанное свойство присутствует для типа; в противном случае — false.
Примеры
if (Windows.Foundation.Metadata.ApiInformation.IsWriteablePropertyPresent("Windows.Devices.Sensors.Accelerometer", "ReportInterval"))
{
Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReportInterval writeable property was found");
}
else
{
Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReportInterval writeable property was NOT found");
}