/// <summary>
 /// Navigate within the navigation log. This does not change the set of
 /// locations in the navigation log.
 /// </summary>
 /// <param name="navigationLogIndex">An index into the navigation logs Locations collection.</param>
 /// <returns>True if the navigation succeeded, false if it failed for any reason.</returns>
 public bool NavigateLogLocation(int navigationLogIndex)
 {
     return(NavigationLog.NavigateLog(navigationLogIndex));
 }
 /// <summary>
 /// Navigates within the navigation log. This does not change the set of
 /// locations in the navigation log.
 /// </summary>
 /// <param name="direction">Forward of Backward</param>
 /// <returns>True if the navigation succeeded, false if it failed for any reason.</returns>
 public bool NavigateLogLocation(NavigationLogDirection direction)
 {
     return(NavigationLog.NavigateLog(direction));
 }