Compartir a través de


ApiInformation.IsReadOnlyPropertyPresent(String, String) Método

Definición

Devuelve true o false para indicar si una propiedad de solo lectura especificada está presente para un tipo especificado.

public:
 static bool IsReadOnlyPropertyPresent(Platform::String ^ typeName, Platform::String ^ propertyName);
 static bool IsReadOnlyPropertyPresent(winrt::hstring const& typeName, winrt::hstring const& propertyName);
public static bool IsReadOnlyPropertyPresent(string typeName, string propertyName);
function isReadOnlyPropertyPresent(typeName, propertyName)
Public Shared Function IsReadOnlyPropertyPresent (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.IsReadOnlyPropertyPresent("Windows.Devices.Sensors.Accelerometer", "ReadingType"))
{
    Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReadingType read-only property was found");
}
else
{
    Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReadingType read-only property was NOT found");
}

Se aplica a