Catel.Services.NavigationService.NavigateToUri C# (CSharp) 메소드

NavigateToUri() 개인적인 메소드

private NavigateToUri ( Uri uri ) : void
uri System.Uri
리턴 void
        partial void NavigateToUri(Uri uri)
        {
#if NETFX_CORE
            throw Log.ErrorAndCreateException<NotSupportedInPlatformException>($"Direct navigations to urls is not supported in '{Platforms.CurrentPlatform}', cannot navigate to '{uri}'. Use Navigate(type) instead.");
#else
            RootFrame.Navigate(uri);
#endif
        }