ApiInformation.IsEventPresent(String, String) Metodo

Definizione

Restituisce true o false per indicare se è presente un evento specificato per un tipo specificato.

public:
 static bool IsEventPresent(Platform::String ^ typeName, Platform::String ^ eventName);
 static bool IsEventPresent(winrt::hstring const& typeName, winrt::hstring const& eventName);
public static bool IsEventPresent(string typeName, string eventName);
function isEventPresent(typeName, eventName)
Public Shared Function IsEventPresent (typeName As String, eventName As String) As Boolean

Parametri

typeName
String

Platform::String

winrt::hstring

Nome completo dello spazio dei nomi del tipo.

eventName
String

Platform::String

winrt::hstring

Nome dell'evento.

Restituisce

Boolean

bool

True se l'evento specificato è presente per il tipo; in caso contrario, false.

Esempio

if (Windows.Foundation.Metadata.ApiInformation.IsEventPresent("Windows.Media.Core.AudioTrack", "OpenFailed"))
{
    Debug.WriteLine("Windows.Media.Core.AudioTrack.OpenFailed event found");
}
else
{
    Debug.WriteLine("Windows.Media.Core.AudioTrack.OpenFailed event NOT found");
}

Si applica a