summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderWebForms/Global.asax.cs
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 /samples/OpenIdProviderWebForms/Global.asax.cs
parentb06ec895784965e1ae446c994abf037f91f44b3b (diff)
downloadDotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.zip
DotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.tar.gz
DotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.tar.bz2
Removed irrelevant "__" prefix handling from samples.
Diffstat (limited to 'samples/OpenIdProviderWebForms/Global.asax.cs')
-rw-r--r--samples/OpenIdProviderWebForms/Global.asax.cs3
1 files changed, 0 insertions, 3 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();