Alloy.Business.PageViewContextFactory.GetLoginUrl C# (CSharp) 메소드

GetLoginUrl() 개인적인 메소드

private GetLoginUrl ( EPiServer.Core.ContentReference returnToContentLink ) : string
returnToContentLink EPiServer.Core.ContentReference
리턴 string
        private string GetLoginUrl(ContentReference returnToContentLink)
        {
            return string.Format(
                "{0}?ReturnUrl={1}",
                FormsAuthentication.LoginUrl,
                _urlResolver.GetUrl(returnToContentLink));
        }