예제 #1
0
 public CameraCaptureListener(CameraBasic owner)
 {
     if (owner == null)
     {
         throw new System.ArgumentNullException("owner");
     }
     this.owner = owner;
 }
예제 #2
0
 public VoiceLuisAppSurfaceTextureListener(CameraBasic owner)
 {
     if (owner == null)
     {
         throw new System.ArgumentNullException("owner");
     }
     this.owner = owner;
 }
예제 #3
0
 public CameraCaptureSessionCallback(CameraBasic owner)
 {
     if (owner == null)
     {
         throw new System.ArgumentNullException("owner");
     }
     this.owner = owner;
 }
예제 #4
0
        public ImageAvailableListener(CameraBasic fragment, File file)
        {
            if (fragment == null)
            {
                throw new System.ArgumentNullException("fragment");
            }
            if (file == null)
            {
                throw new System.ArgumentNullException("file");
            }

            owner     = fragment;
            this.file = file;
        }