Badges.Controllers.AssertionController.AbsoluteUrl C# (CSharp) Method

AbsoluteUrl() private method

private AbsoluteUrl ( string action, string controller = null, System.Guid id = null ) : string
action string
controller string
id System.Guid
return string
        private string AbsoluteUrl(string action, string controller = null, Guid? id = null)
        {
            return Url.Action(action, controller, new { area = string.Empty, id }, ControllerContext.HttpContext.Request.Url.Scheme);
        }