ApiInformation.IsPropertyPresent(String, String) Methode

Definition

Gibt true oder false zurück, um anzugeben, ob eine angegebene Eigenschaft (schreibbar oder schreibgeschützt) für einen angegebenen Typ vorhanden ist.

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

Parameter

typeName
String

Platform::String

winrt::hstring

Der namespacequalifizierte Name des Typs.

propertyName
String

Platform::String

winrt::hstring

Der Name der Eigenschaft.

Gibt zurück

Boolean

bool

True , wenn die angegebene Eigenschaft für den Typ vorhanden ist; Andernfalls false.

Beispiele

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

Gilt für: