ApiInformation.IsPropertyPresent(String, String) Metodo

Definizione

Restituisce true o false per indicare se una proprietà specificata (scrivibile o di sola lettura) è presente per un tipo specificato.

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

Parametri

typeName
String

Platform::String

winrt::hstring

Nome completo dello spazio dei nomi del tipo.

propertyName
String

Platform::String

winrt::hstring

Nome della proprietà.

Restituisce

Boolean

bool

True se la proprietà specificata è presente per il tipo; in caso contrario, false.

Esempio

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

Si applica a