Condividi tramite


PlayToReceiver.NotifyLoadedMetadata Metodo

Definizione

Notifica al ricevitore Play To che i metadati per il supporto hanno terminato il caricamento.

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

Requisiti Windows

Funzionalità dell'app
privateNetworkClientServer

Commenti

Per un esempio di creazione di un ricevitore Play To software, vedere Cast multimediale.

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

Si applica a

Vedi anche