summaryrefslogtreecommitdiffstats
path: root/samples/RelyingPartyMvc/Controllers/HomeController.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-26 16:01:37 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-26 16:01:37 -0700
commitfc29aefdf4fe9fb1081ee21c01f5ba3963904be6 (patch)
tree74e1cb88f7a600f446df513a3a15a0104d7ff7e7 /samples/RelyingPartyMvc/Controllers/HomeController.cs
parentd18ea6028e8c6cadbf99e2c4529350c26224c6ff (diff)
parentad95a2e4ab219a246a2288c62452b0d920a7cdc2 (diff)
downloadDotNetOpenAuth-fc29aefdf4fe9fb1081ee21c01f5ba3963904be6.zip
DotNetOpenAuth-fc29aefdf4fe9fb1081ee21c01f5ba3963904be6.tar.gz
DotNetOpenAuth-fc29aefdf4fe9fb1081ee21c01f5ba3963904be6.tar.bz2
Merge branch 'samplerename'
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");
- }
- }
-}