Compartir a través de


ApiInformation.IsWriteablePropertyPresent(String, String) Método

Definición

Devuelve true o false para indicar si una propiedad que se puede escribir especificada está presente para un tipo especificado.

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

Parámetros

typeName
String

Platform::String

winrt::hstring

Nombre completo del espacio de nombres del tipo.

propertyName
String

Platform::String

winrt::hstring

El nombre de la propiedad.

Devoluciones

Boolean

bool

True si la propiedad especificada está presente para el tipo; de lo contrario, false.

Ejemplos

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

Se aplica a