summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-15 18:15:39 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-15 18:15:39 -0700
commitf591de83d8c41b98afaab6359622846f9b465b3a (patch)
tree1bbc55c763f8f0895e9d0ddeb9efb1d94c8c913a
parentb06ec895784965e1ae446c994abf037f91f44b3b (diff)
downloadDotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.zip
DotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.tar.gz
DotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.tar.bz2
Removed irrelevant "__" prefix handling from samples.
-rw-r--r--samples/OpenIdProviderWebForms/Global.asax.cs3
-rw-r--r--samples/RelyingPartyWebForms/Global.asax.cs3
2 files changed, 0 insertions, 6 deletions
diff --git a/samples/OpenIdProviderWebForms/Global.asax.cs b/samples/OpenIdProviderWebForms/Global.asax.cs
index 89d9268..79aca23 100644
--- a/samples/OpenIdProviderWebForms/Global.asax.cs
+++ b/samples/OpenIdProviderWebForms/Global.asax.cs
@@ -20,9 +20,6 @@ namespace OpenIdProviderWebForms {
public static string ToString(NameValueCollection collection) {
using (StringWriter sw = new StringWriter()) {
foreach (string key in collection.Keys) {
- if (key.StartsWith("__")) {
- continue; // skip
- }
sw.WriteLine("{0} = '{1}'", key, collection[key]);
}
return sw.ToString();
diff --git a/samples/RelyingPartyWebForms/Global.asax.cs b/samples/RelyingPartyWebForms/Global.asax.cs
index 91cfd9a..fe60707 100644
--- a/samples/RelyingPartyWebForms/Global.asax.cs
+++ b/samples/RelyingPartyWebForms/Global.asax.cs
@@ -13,9 +13,6 @@
public static string ToString(NameValueCollection collection) {
using (StringWriter sw = new StringWriter()) {
foreach (string key in collection.Keys) {
- if (key.StartsWith("__")) {
- continue; // skip
- }
sw.WriteLine("{0} = '{1}'", key, collection[key]);
}
return sw.ToString();