ApiInformation.IsWriteablePropertyPresent(String, String) Méthode

Définition

Retourne true ou false pour indiquer si une propriété en écriture spécifiée est présente pour un type spécifié.

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

Paramètres

typeName
String

Platform::String

winrt::hstring

Nom qualifié d’espace de noms du type.

propertyName
String

Platform::String

winrt::hstring

Nom de la propriété.

Retours

Boolean

bool

True si la propriété spécifiée est présente pour le type ; sinon, false.

Exemples

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

S’applique à