ApiInformation.IsReadOnlyPropertyPresent(String, String) Metodo

Definizione

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

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

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

Si applica a