MediaCapture.RecordLimitationExceeded Evento
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.
Si verifica quando viene superato il limite di record.
public:
virtual event RecordLimitationExceededEventHandler ^ RecordLimitationExceeded;
// Register
event_token RecordLimitationExceeded(RecordLimitationExceededEventHandler const& handler) const;
// Revoke with event_token
void RecordLimitationExceeded(event_token const* cookie) const;
// Revoke with event_revoker
MediaCapture::RecordLimitationExceeded_revoker RecordLimitationExceeded(auto_revoke_t, RecordLimitationExceededEventHandler const& handler) const;
public event RecordLimitationExceededEventHandler RecordLimitationExceeded;
function onRecordLimitationExceeded(eventArgs) { /* Your code */ }
mediaCapture.addEventListener("recordlimitationexceeded", onRecordLimitationExceeded);
mediaCapture.removeEventListener("recordlimitationexceeded", onRecordLimitationExceeded);
- or -
mediaCapture.onrecordlimitationexceeded = onRecordLimitationExceeded;
Public Custom Event RecordLimitationExceeded As RecordLimitationExceededEventHandler
Tipo evento
Requisiti Windows
Funzionalità dell'app |
backgroundMediaRecording
|
Commenti
Se un'app riceve un evento RecordLimitationExceeded, si prevede di finalizzare il file che sta registrando. Se non viene completata, il motore di acquisizione interromperà l'invio di campioni al file in cui l'app stava registrando.
Nella versione corrente il limite di record è di tre ore.