diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-15 18:15:39 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-15 18:15:39 -0700 |
commit | f591de83d8c41b98afaab6359622846f9b465b3a (patch) | |
tree | 1bbc55c763f8f0895e9d0ddeb9efb1d94c8c913a /samples/RelyingPartyWebForms/Global.asax.cs | |
parent | b06ec895784965e1ae446c994abf037f91f44b3b (diff) | |
download | DotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.zip DotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.tar.gz DotNetOpenAuth-f591de83d8c41b98afaab6359622846f9b465b3a.tar.bz2 |
Removed irrelevant "__" prefix handling from samples.
Diffstat (limited to 'samples/RelyingPartyWebForms/Global.asax.cs')
-rw-r--r-- | samples/RelyingPartyWebForms/Global.asax.cs | 3 |
1 files changed, 0 insertions, 3 deletions
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(); |