Compartilhar via


PlayToReceiver.NotifyLoadedMetadata Método

Definição

Notifica o receptor Play To de que os metadados para a mídia terminaram de ser carregados.

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

Requisitos do Windows

Funcionalidades do aplicativo
privateNetworkClientServer

Comentários

Para obter um exemplo de criação de um receptor play to de software, consulte Conversão de mídia.

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

Aplica-se a

Confira também