How can I open hangfire Dashboard in MVC based Project Using URL?

How can I open hangfire Dashboard in MVC based Project Using URL?

You should be able to access the Hangfire dashboard at http://yourapp.com/Hangfire

startup.cs
app.MapHangfireDashboard("/Home/jobs", new[] { new AllRequestsAuthorizationFilter() });

and then in a razor view you can use an A tag with:
href=“Home/jobs”