Compartir a través de


ApiInformation.IsPropertyPresent(String, String) Método

Definición

Devuelve true o false para indicar si existe una propiedad especificada (de solo lectura o de escritura) para un tipo especificado.

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

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

Se aplica a