/// <summary> /// Raises the <see cref="CaptureCompleted"/> event. /// </summary> /// <param name="e">The <see cref="Catel.Services.CameraOperationCompletedEventArgs"/> instance containing the event data.</param> protected void RaiseCaptureCompleted(CameraOperationCompletedEventArgs e) { CaptureCompleted.SafeInvoke(this, e); }
/// <summary> /// Raises the <see cref="AutoFocusCompleted"/> event. /// </summary> /// <param name="e">The <see cref="Catel.Services.CameraOperationCompletedEventArgs"/> instance containing the event data.</param> protected void RaiseAutoFocusCompleted(CameraOperationCompletedEventArgs e) { AutoFocusCompleted.SafeInvoke(this, e); }
/// <summary> /// Raises the <see cref="Initialized"/> event. /// </summary> /// <param name="e">The <see cref="Catel.Services.CameraOperationCompletedEventArgs"/> instance containing the event data.</param> protected void RaiseInitialized(CameraOperationCompletedEventArgs e) { Initialized.SafeInvoke(this, e); }