ApiInformation.IsWriteablePropertyPresent(String, String) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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
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");
}