ApiInformation.IsWriteablePropertyPresent(String, String) Metodo

Definizione

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

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

Parametri

typeName
String

Platform::String

winrt::hstring

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

Si applica a