summaryrefslogtreecommitdiffstats
path: root/samples/RelyingPartyMvc/Controllers/HomeController.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-26 14:04:40 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-26 14:04:40 -0700
commitd7bec791ff0b1fe6517c2b450d6fd1116d0a8ea7 (patch)
tree019bb8c875e2fa9c5ca07bb17af17891411307cf /samples/RelyingPartyMvc/Controllers/HomeController.cs
parent540f088953154bee2356cdf5f65a097cb6d3ebe4 (diff)
downloadDotNetOpenAuth-d7bec791ff0b1fe6517c2b450d6fd1116d0a8ea7.zip
DotNetOpenAuth-d7bec791ff0b1fe6517c2b450d6fd1116d0a8ea7.tar.gz
DotNetOpenAuth-d7bec791ff0b1fe6517c2b450d6fd1116d0a8ea7.tar.bz2
Renamed OpenID RP sample projects.
Diffstat (limited to 'samples/RelyingPartyMvc/Controllers/HomeController.cs')
-rw-r--r--samples/RelyingPartyMvc/Controllers/HomeController.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/samples/RelyingPartyMvc/Controllers/HomeController.cs b/samples/RelyingPartyMvc/Controllers/HomeController.cs
deleted file mode 100644
index ac33185..0000000
--- a/samples/RelyingPartyMvc/Controllers/HomeController.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-namespace RelyingPartyMvc.Controllers {
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
-
- public class HomeController : Controller {
- public ActionResult Index() {
- Response.AppendHeader(
- "X-XRDS-Location",
- new Uri(Request.Url, Response.ApplyAppPathModifier("~/Home/xrds")).AbsoluteUri);
- return View("Index");
- }
-
- public ActionResult Xrds() {
- return View("Xrds");
- }
- }
-}