ApiInformation.IsWriteablePropertyPresent(String, String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna true ou false para indicar se uma propriedade gravável especificada está presente para um tipo especificado.
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
Parâmetros
- typeName
-
String
Platform::String
winrt::hstring
O nome qualificado do namespace do tipo.
- propertyName
-
String
Platform::String
winrt::hstring
O nome da propriedade.
Retornos
Boolean
bool
True se a propriedade especificada estiver presente para o tipo; caso contrário, false.
Exemplos
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");
}