public bool RemoveBackEntry()

in AMP/UX/Services/FrameNavigationService.cs [107:118]


        public bool RemoveBackEntry()
        {
            var frame = this.GetCurrentFrame();
            if (frame.CanGoBack)
            {
                frame.BackStack.RemoveAt(frame.BackStackDepth - 1);
                return true;
            }

            return false;

        }