Direct3D11CaptureFramePool.FrameArrived 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.
Evento generato quando un frame acquisito viene archiviato nel pool di frame.
// Register
event_token FrameArrived(TypedEventHandler<Direct3D11CaptureFramePool, IInspectable const&> const& handler) const;
// Revoke with event_token
void FrameArrived(event_token const* cookie) const;
// Revoke with event_revoker
Direct3D11CaptureFramePool::FrameArrived_revoker FrameArrived(auto_revoke_t, TypedEventHandler<Direct3D11CaptureFramePool, IInspectable const&> const& handler) const;
public event TypedEventHandler<Direct3D11CaptureFramePool,object> FrameArrived;
function onFrameArrived(eventArgs) { /* Your code */ }
direct3D11CaptureFramePool.addEventListener("framearrived", onFrameArrived);
direct3D11CaptureFramePool.removeEventListener("framearrived", onFrameArrived);
- or -
direct3D11CaptureFramePool.onframearrived = onFrameArrived;
Public Custom Event FrameArrived As TypedEventHandler(Of Direct3D11CaptureFramePool, Object)
Tipo evento
TypedEventHandler<Direct3D11CaptureFramePool,IInspectable>