diff options
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(); |