Image capture process start event arguments class.
Inheritance: System.EventArgs
 /// <summary>
 /// Raises the <see cref="CyrusBuilt.MonoPi.Devices.PiCamera.PiCameraDevice.CaptureStarted"/> event.
 /// </summary>
 /// <param name="e">
 /// The event arguments.
 /// </param>
 protected virtual void OnCaptureStarted(CaptureStartEventArgs e)
 {
     if (this.CaptureStarted != null)
     {
         this.CaptureStarted(this, e);
     }
 }
Exemple #2
0
		/// <summary>
		/// Raises the <see cref="CyrusBuilt.MonoPi.Devices.PiCamera.PiCameraDevice.CaptureStarted"/> event.
		/// </summary>
		/// <param name="e">
		/// The event arguments.
		/// </param>
		protected virtual void OnCaptureStarted(CaptureStartEventArgs e) {
			if (this.CaptureStarted != null) {
				this.CaptureStarted(this, e);
			}
		}