ApiInformation.IsReadOnlyPropertyPresent(String, String) Método

Definição

Retorna true ou false para indicar se uma propriedade somente leitura especificada está presente para um tipo especificado.

public:
 static bool IsReadOnlyPropertyPresent(Platform::String ^ typeName, Platform::String ^ propertyName);
 static bool IsReadOnlyPropertyPresent(winrt::hstring const& typeName, winrt::hstring const& propertyName);
public static bool IsReadOnlyPropertyPresent(string typeName, string propertyName);
function isReadOnlyPropertyPresent(typeName, propertyName)
Public Shared Function IsReadOnlyPropertyPresent (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.IsReadOnlyPropertyPresent("Windows.Devices.Sensors.Accelerometer", "ReadingType"))
{
    Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReadingType read-only property was found");
}
else
{
    Debug.WriteLine("Windows.Devices.Sensors.Accelerometer.ReadingType read-only property was NOT found");
}

Aplica-se a