public CameraCaptureSessionCallback(CamRecorder owner)
 {
     if (owner == null)
     {
         throw new ArgumentNullException(nameof(owner));
     }
     this.owner = owner;
 }
Example #2
0
 public CameraCaptureStillPictureSessionCallback(CamRecorder camRecorder)
 {
     this.owner = camRecorder;
 }
Example #3
0
 public CameraCaptureListener(CamRecorder owner)
 {
     this.owner = owner ?? throw new System.ArgumentNullException(nameof(owner));
 }
 public PreviewCaptureStateCallback(CamRecorder frag)
 {
     owner = frag;
 }