Compartir a través de


PlayToReceiver.NotifyLoadedMetadata Método

Definición

Notifica al receptor Reproducir a que los metadatos del medio han terminado de cargarse.

public:
 virtual void NotifyLoadedMetadata() = NotifyLoadedMetadata;
void NotifyLoadedMetadata();
public void NotifyLoadedMetadata();
function notifyLoadedMetadata()
Public Sub NotifyLoadedMetadata ()

Requisitos de Windows

Características de aplicaciones
privateNetworkClientServer

Comentarios

Para obtener un ejemplo de cómo crear un receptor de reproducción de software, consulte Conversión multimedia.

void VideoPlayer_MediaOpened(object sender, RoutedEventArgs e)
{
    if (receiver != null)
    {
        receiver.NotifyDurationChange(VideoPlayer.NaturalDuration.TimeSpan);
        receiver.NotifyLoadedMetadata();
    }
}
Sub VideoPlayer_MediaOpened()
    If receiver IsNot Nothing Then
        receiver.NotifyDurationChange(VideoPlayer.NaturalDuration.TimeSpan)
        receiver.NotifyLoadedMetadata()
    End If
End Sub

Se aplica a

Consulte también