Compartir a través de


ApiInformation.IsEventPresent(String, String) Método

Definición

Devuelve true o false para indicar si un evento especificado está presente para un tipo especificado.

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

Parámetros

typeName
String

Platform::String

winrt::hstring

Nombre completo del espacio de nombres del tipo.

eventName
String

Platform::String

winrt::hstring

Nombre del evento.

Devoluciones

Boolean

bool

True si el evento especificado está presente para el tipo; de lo contrario, false.

Ejemplos

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

Se aplica a