/// <summary>
 /// Stops the current recording. If there is no recording in progress, this method will
 /// return <see cref="RecordingResult"/>.<c>OK</c>.
 /// </summary>
 /// <returns><see cref="RecordingResult"/>.<c>OK</c> if the recording was stopped
 /// successfully, or <see cref="RecordingResult"/>.<c>ErrorRecordingFailed</c> if there was
 /// an error.</returns>
 public RecordingResult StopRecording()
 {
     return(SessionApi.StopRecording(ARCoreExtensions._instance.currentARCoreSessionHandle));
 }