vlko.web.Areas.Admin.Controllers.TwitterController.GetAuthorizeReturnUrl C# (CSharp) Method

GetAuthorizeReturnUrl() private static method

Gets the authorize return URL.
private static GetAuthorizeReturnUrl ( ) : string
return string
        private static string GetAuthorizeReturnUrl()
        {
            var rootUrl = IoC.Resolve<IAppInfoService>().RootUrl;
            return rootUrl + "/Admin/Twitter/AuthorizeConfirmed";
        }