Catel.MVVM.Navigation.NavigationAdapter.GetNavigationUri C# (CSharp) Method

GetNavigationUri() protected method

Gets the navigation URI for the target page.
protected GetNavigationUri ( object target ) : string
target object The target.
return string
        protected override string GetNavigationUri(object target)
        {
            throw new MustBeImplementedException();

            //var activity = target as Activity;
            //if (activity == null)
            //{
            //    return null;
            //}

            //return activity.LocalClassName;
        }
    }