ApiInformation.IsEnumNamedValuePresent(String, String) Metodo

Definizione

Restituisce true o false per indicare se è presente una costante denominata specificata per un'enumerazione specificata.

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

Parametri

enumTypeName
String

Platform::String

winrt::hstring

Nome completo dello spazio dei nomi del tipo.

valueName
String

Platform::String

winrt::hstring

Nome della costante.

Restituisce

Boolean

bool

True se la costante specificata è presente; in caso contrario, false.

Esempio

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

Si applica a