Compartir a través de


ApiInformation.IsEnumNamedValuePresent(String, String) Método

Definición

Devuelve true o false para indicar si existe una constante con nombre especificada para una enumeración especificada.

public:
 static bool IsEnumNamedValuePresent(Platform::String ^ enumTypeName, Platform::String ^ valueName);
 static bool IsEnumNamedValuePresent(winrt::hstring const& enumTypeName, winrt::hstring const& valueName);
public static bool IsEnumNamedValuePresent(string enumTypeName, string valueName);
function isEnumNamedValuePresent(enumTypeName, valueName)
Public Shared Function IsEnumNamedValuePresent (enumTypeName As String, valueName As String) As Boolean

Parámetros

enumTypeName
String

Platform::String

winrt::hstring

Nombre completo del espacio de nombres del tipo.

valueName
String

Platform::String

winrt::hstring

Nombre de la constante.

Devoluciones

Boolean

bool

True si la constante especificada está presente; de lo contrario, false.

Ejemplos

if (Windows.Foundation.Metadata.ApiInformation.IsEnumNamedValuePresent("Windows.UI.Xaml.Automation.Peers.AutomationControlType", "ComboBox"))
{
    Debug.WriteLine("Windows.UI.Xaml.Automation.Peers.AutomationControlType.ComboBox enum value found");
}
else
{
    Debug.WriteLine("Windows.UI.Xaml.Automation.Peers.AutomationControlType.ComboBox enum value NOT found");
}

Se aplica a