PlayToReceiver.NotifySeeking Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Notifica al ricevitore Play To che l'elemento di riproduzione audio o video sta cercando una nuova posizione di riproduzione.
public:
virtual void NotifySeeking() = NotifySeeking;
void NotifySeeking();
public void NotifySeeking();
function notifySeeking()
Public Sub NotifySeeking ()
Requisiti Windows
Funzionalità dell'app |
privateNetworkClientServer
|
Commenti
Per un esempio di creazione di un ricevitore Play To software, vedere Cast multimediale.
void VideoPlayer_SeekCompleted(object sender, RoutedEventArgs e)
{
if (receiver != null)
{
if (!seeking)
receiver.NotifySeeking();
receiver.NotifySeeked();
seeking = false;
}
}
Sub VideoPlayer_SeekCompleted()
If receiver IsNot Nothing Then
If Not seeking Then
receiver.NotifySeeking()
receiver.NotifySeeked()
seeking = False
End If
End If
End Sub