diff options
-rw-r--r-- | samples/OpenIdProviderWebForms/Global.asax.cs | 3 | ||||
-rw-r--r-- | samples/RelyingPartyWebForms/Global.asax.cs | 3 |
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(); |