Catel.Services.NavigationService.GetBackStackCount C# (CSharp) Метод

GetBackStackCount() публичный Метод

Returns the number of total back entries (which is the navigation history).
public GetBackStackCount ( ) : int
Результат int
        public override int GetBackStackCount()
        {
#if NETFX_CORE
            return RootFrame.BackStackDepth;
#elif WINDOWS_PHONE
            return RootFrame.BackStack.Cast<object>().Count();
#elif SILVERLIGHT
            throw new NotSupportedInPlatformException();
#else
            return RootFrame.BackStack.Cast<object>().Count();
#endif
        }